* src/keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
first non-nil return value).
This commit is contained in:
parent
0d9e9a12ca
commit
f84c17c70c
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2011-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
|
||||
first non-nil return value).
|
||||
|
||||
2011-04-03 Jan Djärv <jan.h.d@swipnet.se>
|
||||
|
||||
* nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
|
||||
|
|
|
@ -1870,7 +1870,8 @@ safe_run_hook_funcall (size_t nargs, Lisp_Object *args)
|
|||
else
|
||||
Vinhibit_quit = Fcons (Vinhibit_quit, args[0]);
|
||||
|
||||
return internal_condition_case (safe_run_hooks_1, Qt, safe_run_hooks_error);
|
||||
internal_condition_case (safe_run_hooks_1, Qt, safe_run_hooks_error);
|
||||
return Qnil;
|
||||
}
|
||||
|
||||
/* If we get an error while running the hook, cause the hook variable
|
||||
|
|
Loading…
Add table
Reference in a new issue