diff options
| author | Stefan Monnier | 2019-04-25 15:34:05 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2019-04-25 15:34:27 -0400 |
| commit | ca99c00f7574d72cd6d07dbfe0c3011f033ba5e8 (patch) | |
| tree | 1daafdf6d0988de8474765877ec2de7ac2acc94c | |
| parent | fe6c507f5ce0fd744b5bd1d0db6ea175e1188a7f (diff) | |
| download | emacs-ca99c00f7574d72cd6d07dbfe0c3011f033ba5e8.tar.gz emacs-ca99c00f7574d72cd6d07dbfe0c3011f033ba5e8.zip | |
* lisp/simple.el (eval-expression): Fix paren typo.
| -rw-r--r-- | lisp/simple.el | 2 |
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." | |||
| 1647 | 1647 | ||
| 1648 | (if (null eval-expression-debug-on-error) | 1648 | (if (null eval-expression-debug-on-error) |
| 1649 | (push (eval (let ((lexical-binding t)) (macroexpand-all exp)) t) | 1649 | (push (eval (let ((lexical-binding t)) (macroexpand-all exp)) t) |
| 1650 | values)) | 1650 | values) |
| 1651 | (let ((old-value (make-symbol "t")) new-value) | 1651 | (let ((old-value (make-symbol "t")) new-value) |
| 1652 | ;; Bind debug-on-error to something unique so that we can | 1652 | ;; Bind debug-on-error to something unique so that we can |
| 1653 | ;; detect when evalled code changes it. | 1653 | ;; detect when evalled code changes it. |