summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2019-04-25 15:34:05 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2019-04-25 15:34:27 -0400
commitca99c00f7574d72cd6d07dbfe0c3011f033ba5e8 (patch)
tree1daafdf6d0988de8474765877ec2de7ac2acc94c
parentfe6c507f5ce0fd744b5bd1d0db6ea175e1188a7f (diff)
downloademacs-ca99c00f7574d72cd6d07dbfe0c3011f033ba5e8.tar.gz
* lisp/simple.el (eval-expression): Fix paren typo.
-rw-r--r--lisp/simple.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 79db712105a..5660f6574f4 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -1647,7 +1647,7 @@ this command arranges for all errors to enter the debugger."
(if (null eval-expression-debug-on-error)
(push (eval (let ((lexical-binding t)) (macroexpand-all exp)) t)
- values))
+ values)
(let ((old-value (make-symbol "t")) new-value)
;; Bind debug-on-error to something unique so that we can
;; detect when evalled code changes it.