diff options
author | Kim F. Storm <storm@cua.dk> | 2007-03-18 00:44:24 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2007-03-18 00:44:24 +0000 |
commit | 7f67eea000b0ba102dd86c2666041dc395137413 (patch) | |
tree | da8bd979eb99697c2144c5fd42b9ee91fbb86f10 /lisp/subr.el | |
parent | 31c865eca3cdc484ba187568aba84bede2cca924 (diff) | |
download | emacs-7f67eea000b0ba102dd86c2666041dc395137413.tar.gz |
(when, unless): Doc fix.
Diffstat (limited to 'lisp/subr.el')
-rw-r--r-- | lisp/subr.el | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 846acf52385..7f5dd726a12 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -99,12 +99,20 @@ change the list." (list 'setq listname (list 'cdr listname))))) (defmacro when (cond &rest body) - "If COND yields non-nil, do BODY, else return nil." + "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 ...)" (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." + "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 ...)" (declare (indent 1) (debug t)) (cons 'if (cons cond (cons nil body)))) |