* lisp/ses.el (1value, noreturn): Macros deleted, as we
nowadays have them in subr.el. (Bug#38514)
(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