summaryrefslogtreecommitdiff
path: root/lisp/subr.el
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2015-11-04 14:22:27 +0000
committerArtur Malabarba <bruce.connor.am@gmail.com>2015-11-04 14:22:27 +0000
commit39355bc045874874eb83cecdf2e2e04c3b81d3f7 (patch)
tree52da9614586eaee2583187afaaf2322f324bb215 /lisp/subr.el
parent2fef1fc823bc14957fa624e501dd3b739809d525 (diff)
downloademacs-39355bc045874874eb83cecdf2e2e04c3b81d3f7.tar.gz
Revert "* lisp/subr.el (when): Use `macroexp-progn'"
This reverts commit 8e843831eaf271801836b7a3e4dd3b4fb0bb72b8. It breaks bootstrapping (duh).
Diffstat (limited to 'lisp/subr.el')
-rw-r--r--lisp/subr.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index 91647a67648..ea926ae1475 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -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.