]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/simple.el (eval-expression): Fix paren typo.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 25 Apr 2019 19:34:05 +0000 (15:34 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 25 Apr 2019 19:34:27 +0000 (15:34 -0400)
lisp/simple.el

index 79db712105a1c5a98c05d5cf7e019576856d12cc..5660f6574f4d3022a70c7e1a6f90f6c10b1b2a2e 100644 (file)
@@ -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.