From: Stefan Monnier Date: Thu, 25 Apr 2019 19:34:05 +0000 (-0400) Subject: * lisp/simple.el (eval-expression): Fix paren typo. X-Git-Tag: emacs-27.0.90~3086 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ca99c00f7574d72cd6d07dbfe0c3011f033ba5e8;p=emacs.git * lisp/simple.el (eval-expression): Fix paren typo. --- 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.