Remove duplicate macros from ses.el

* lisp/ses.el (1value, noreturn): Macros deleted, as we
nowadays have them in subr.el.  (Bug#38514)
This commit is contained in:
Eli Zaretskii 2019-12-07 09:27:24 +02:00
parent 48f6888588
commit 937031a555

View file

@ -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