diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/subr.el | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index ad3494a2fa7..cb7572423af 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -243,18 +243,14 @@ change the list." (defmacro when (cond &rest body) "If COND yields non-nil, do BODY, else return nil. When COND yields non-nil, eval BODY forms sequentially and return -value of last one, or nil if there are none. - -\(fn COND BODY...)" +value of last one, or nil if there are none." (declare (indent 1) (debug t)) (list 'if cond (cons 'progn body))) (defmacro unless (cond &rest body) "If COND yields nil, do BODY, else return nil. When COND yields nil, eval BODY forms sequentially and return -value of last one, or nil if there are none. - -\(fn COND BODY...)" +value of last one, or nil if there are none." (declare (indent 1) (debug t)) (cons 'if (cons cond (cons nil body)))) |