]> git.eshelyaron.com Git - emacs.git/commitdiff
Move out indent and edebug specs for when and unless.
authorDave Love <fx@gnu.org>
Fri, 28 Jan 2000 22:10:18 +0000 (22:10 +0000)
committerDave Love <fx@gnu.org>
Fri, 28 Jan 2000 22:10:18 +0000 (22:10 +0000)
lisp/subr.el

index f4976eeb083f195d6530858660420430cda528af..7afcf8671536d2d52360eb3ced7194f0f420a97a 100644 (file)
@@ -69,14 +69,10 @@ change the list."
 (defmacro when (cond &rest body)
   "(when COND BODY...): if COND yields non-nil, do BODY, else return nil."
   (list 'if cond (cons 'progn body)))
-(put 'when 'lisp-indent-function 1)
-(put 'when 'edebug-form-spec '(&rest form))
 
 (defmacro unless (cond &rest body)
   "(unless COND BODY...): if COND yields nil, do BODY, else return nil."
   (cons 'if (cons cond (cons nil body))))
-(put 'unless 'lisp-indent-function 1)
-(put 'unless 'edebug-form-spec '(&rest form))
 
 (defmacro dolist (spec &rest body)
   "(dolist (VAR LIST [RESULT]) BODY...): loop over a list.