aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1996-01-18 08:41:14 +0000
committerRichard M. Stallman1996-01-18 08:41:14 +0000
commite702932d8c427862492088d31db0cb26f31df62a (patch)
tree2912742d5ec73294ab7353278ea1c2ed1f0cf625 /src
parentf029ca5f4a63013dba5c34d775ecf7f3c7dc474f (diff)
downloademacs-e702932d8c427862492088d31db0cb26f31df62a.tar.gz
emacs-e702932d8c427862492088d31db0cb26f31df62a.zip
(safe_run_hooks): Use Qt, not Qerror, to avoid running the debugger.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 2dd5dea7642..f12da3ad580 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -1442,7 +1442,7 @@ safe_run_hooks (hook)
1442 int count = specpdl_ptr - specpdl; 1442 int count = specpdl_ptr - specpdl;
1443 specbind (Qinhibit_quit, hook); 1443 specbind (Qinhibit_quit, hook);
1444 1444
1445 internal_condition_case (safe_run_hooks_1, Qerror, safe_run_hooks_error); 1445 internal_condition_case (safe_run_hooks_1, Qt, safe_run_hooks_error);
1446 1446
1447 unbind_to (count, Qnil); 1447 unbind_to (count, Qnil);
1448} 1448}