aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-09-12 20:57:17 +0000
committerRichard M. Stallman1997-09-12 20:57:17 +0000
commitc7387861c71fbc20254440b6594cf37c14b60b2c (patch)
tree0bd93af951a9092a8ec55433600ef196746c82c4
parent54c548db96cd8247cdb0561ee55701c8dc70490b (diff)
downloademacs-c7387861c71fbc20254440b6594cf37c14b60b2c.tar.gz
emacs-c7387861c71fbc20254440b6594cf37c14b60b2c.zip
(debug): Allow recursive minibuffers if we're in a minibuffer already.
-rw-r--r--lisp/emacs-lisp/debug.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/debug.el b/lisp/emacs-lisp/debug.el
index 7a8980c0803..9d46bda6869 100644
--- a/lisp/emacs-lisp/debug.el
+++ b/lisp/emacs-lisp/debug.el
@@ -108,6 +108,9 @@ first will be printed into the backtrace buffer."
108 last-event-frame 108 last-event-frame
109 overriding-local-map 109 overriding-local-map
110 load-read-function 110 load-read-function
111 ;; If we are inside a minibuffer, allow nesting
112 ;; so that we don't get an error from the `e' command.
113 (enable-recursive-minibuffers (> (minibuffer-depth) 0))
111 (standard-input t) (standard-output t) 114 (standard-input t) (standard-output t)
112 (cursor-in-echo-area nil)) 115 (cursor-in-echo-area nil))
113 (unwind-protect 116 (unwind-protect