diff options
author | Eli Zaretskii <eliz@gnu.org> | 2019-12-07 09:27:24 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2019-12-07 09:27:24 +0200 |
commit | 937031a55518431ba735dce6e8afccca8f76878d (patch) | |
tree | 9490f1d820c4b090be3d93ccb5f983c32a977c06 /lisp/ses.el | |
parent | 48f688858854d4181a5f92083d4df6d84364a100 (diff) | |
download | emacs-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.el | 11 |
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 |