From: Dave Love Date: Fri, 28 Jan 2000 22:10:18 +0000 (+0000) Subject: Move out indent and edebug specs for when and unless. X-Git-Tag: emacs-pretest-21.0.90~5213 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4ce72c0d79ad0344cc22156fd9ad6d1a0e01033d;p=emacs.git Move out indent and edebug specs for when and unless. --- diff --git a/lisp/subr.el b/lisp/subr.el index f4976eeb083..7afcf867153 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -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.