From 4ce72c0d79ad0344cc22156fd9ad6d1a0e01033d Mon Sep 17 00:00:00 2001 From: Dave Love Date: Fri, 28 Jan 2000 22:10:18 +0000 Subject: [PATCH] Move out indent and edebug specs for when and unless. --- lisp/subr.el | 4 ---- 1 file changed, 4 deletions(-) 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. -- 2.39.5