From e702932d8c427862492088d31db0cb26f31df62a Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 18 Jan 1996 08:41:14 +0000 Subject: [PATCH] (safe_run_hooks): Use Qt, not Qerror, to avoid running the debugger. --- src/keyboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.2