# HG changeset patch # User Richard M. Stallman # Date 865874554 0 # Node ID bca8e581535ab5cebbd63bee78edd9bb13176234 # Parent d68989ce015ec72712f59e6b793d9225b509388f (debug): Set overriding-terminal-local-map to nil, don't bind it, so it won't be restored on `q'. diff -r d68989ce015e -r bca8e581535a lisp/emacs-lisp/debug.el --- a/lisp/emacs-lisp/debug.el Mon Jun 09 13:07:45 1997 +0000 +++ b/lisp/emacs-lisp/debug.el Mon Jun 09 16:42:34 1997 +0000 @@ -98,13 +98,15 @@ (debugger-outer-standard-input standard-input) (debugger-outer-standard-output standard-output) (debugger-outer-cursor-in-echo-area cursor-in-echo-area)) + ;; Set this instead of binding it, so that `q' + ;; will not restore it. + (setq overriding-terminal-local-map nil) ;; Don't let these magic variables affect the debugger itself. (let ((last-command nil) this-command track-mouse (unread-command-char -1) unread-command-events last-input-event last-command-event last-nonmenu-event last-event-frame overriding-local-map - overriding-terminal-local-map load-read-function (standard-input t) (standard-output t) (cursor-in-echo-area nil))