From: Richard M. Stallman Date: Thu, 18 Jan 1996 08:41:14 +0000 (+0000) Subject: (safe_run_hooks): Use Qt, not Qerror, to avoid running the debugger. X-Git-Tag: emacs-19.34~1641 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e702932d8c427862492088d31db0cb26f31df62a;p=emacs.git (safe_run_hooks): Use Qt, not Qerror, to avoid running the debugger. --- 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) int count = specpdl_ptr - specpdl; specbind (Qinhibit_quit, hook); - internal_condition_case (safe_run_hooks_1, Qerror, safe_run_hooks_error); + internal_condition_case (safe_run_hooks_1, Qt, safe_run_hooks_error); unbind_to (count, Qnil); }