summaryrefslogtreecommitdiff
path: root/lisp/ses.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2019-12-07 09:27:24 +0200
committerEli Zaretskii <eliz@gnu.org>2019-12-07 09:27:24 +0200
commit937031a55518431ba735dce6e8afccca8f76878d (patch)
tree9490f1d820c4b090be3d93ccb5f983c32a977c06 /lisp/ses.el
parent48f688858854d4181a5f92083d4df6d84364a100 (diff)
downloademacs-937031a55518431ba735dce6e8afccca8f76878d.tar.gz
emacs-937031a55518431ba735dce6e8afccca8f76878d.tar.bz2
emacs-937031a55518431ba735dce6e8afccca8f76878d.zip
Remove duplicate macros from ses.el
* lisp/ses.el (1value, noreturn): Macros deleted, as we nowadays have them in subr.el. (Bug#38514)
Diffstat (limited to 'lisp/ses.el')
-rw-r--r--lisp/ses.el11
1 files changed, 0 insertions, 11 deletions
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