changeset 27482:a5ab0c9ced78

Move out indent and edebug specs for when and unless.
author Dave Love <fx@gnu.org>
date Fri, 28 Jan 2000 22:10:18 +0000
parents 62a9d12e8637
children b51c38875faf
files lisp/subr.el
diffstat 1 files changed, 0 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/subr.el	Fri Jan 28 17:35:36 2000 +0000
+++ b/lisp/subr.el	Fri Jan 28 22:10:18 2000 +0000
@@ -69,14 +69,10 @@
 (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.