]> git.eshelyaron.com Git - emacs.git/commitdiff
(safe_run_hooks): Use Qt, not Qerror, to avoid running the debugger.
authorRichard M. Stallman <rms@gnu.org>
Thu, 18 Jan 1996 08:41:14 +0000 (08:41 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 18 Jan 1996 08:41:14 +0000 (08:41 +0000)
src/keyboard.c

index 2dd5dea7642ee37ec1bccbacdf5bcf59abade6d5..f12da3ad580d5e044ed1fb95df16d73971b0c38f 100644 (file)
@@ -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);
 }