aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/simple.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/simple.el')
-rw-r--r--lisp/simple.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 99930c3090c..67a4894e315 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -3397,7 +3397,7 @@ Go to the history element by the absolute history position HIST-POS."
3397The same as `command-error-default-function' but display error messages 3397The same as `command-error-default-function' but display error messages
3398at the end of the minibuffer using `minibuffer-message' to not obscure 3398at the end of the minibuffer using `minibuffer-message' to not obscure
3399the minibuffer contents." 3399the minibuffer contents."
3400 (if (memq 'minibuffer-quit (get (car data) 'error-conditions)) 3400 (if (error-has-type-p data 'minibuffer-quit)
3401 (ding t) 3401 (ding t)
3402 (discard-input) 3402 (discard-input)
3403 (ding)) 3403 (ding))