From: Eli Zaretskii Date: Sat, 7 Dec 2019 07:27:24 +0000 (+0200) Subject: Remove duplicate macros from ses.el X-Git-Tag: emacs-27.0.90~420 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=937031a55518431ba735dce6e8afccca8f76878d;p=emacs.git Remove duplicate macros from ses.el * lisp/ses.el (1value, noreturn): Macros deleted, as we nowadays have them in subr.el. (Bug#38514) --- diff --git a/lisp/ses.el b/lisp/ses.el index 1509e8faa5f..87ad2ee6365 100644 --- a/lisp/ses.el +++ b/lisp/ses.el @@ -671,17 +671,6 @@ variables `minrow', `maxrow', `mincol', and `maxcol'." (let ((col (+ ,c mincol))) ,@body)))))))) -;;Support for coverage testing. -(defmacro 1value (form) - "For code-coverage testing, indicate that FORM is expected to always have -the same value." - (declare (debug t)) - form) -(defmacro noreturn (form) - "For code-coverage testing, indicate that FORM will always signal an error." - (declare (debug t)) - form) - ;;---------------------------------------------------------------------------- ;; Utility functions