]> git.eshelyaron.com Git - emacs.git/commitdiff
Revert "* lisp/subr.el (when): Use `macroexp-progn'"
authorArtur Malabarba <bruce.connor.am@gmail.com>
Wed, 4 Nov 2015 14:22:27 +0000 (14:22 +0000)
committerArtur Malabarba <bruce.connor.am@gmail.com>
Wed, 4 Nov 2015 14:22:27 +0000 (14:22 +0000)
This reverts commit 8e843831eaf271801836b7a3e4dd3b4fb0bb72b8.
It breaks bootstrapping (duh).

lisp/subr.el

index 91647a67648b096d25ee63c8fa9df3a58dfce1d7..ea926ae14751dfe86757c9cc877693db4d8e5f43 100644 (file)
@@ -179,7 +179,7 @@ value of last one, or nil if there are none.
 
 \(fn COND BODY...)"
   (declare (indent 1) (debug t))
-  (list 'if cond (macroexp-progn body)))
+  (list 'if cond (cons 'progn body)))
 
 (defmacro unless (cond &rest body)
   "If COND yields nil, do BODY, else return nil.