1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-07 04:10:27 -08:00

* src/keyboard.c (safe_run_hooks_error): Don't unquote strings.

This commit is contained in:
Stefan Monnier 2012-03-28 11:54:54 -04:00
parent 38de3354b7
commit e8fc049ff7
2 changed files with 6 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
* keyboard.c (safe_run_hooks_error): Don't unquote strings.
2012-03-27 Glenn Morris <rgm@gnu.org>
* search.c (Fword_search_backward_lax, Fword_search_forward_lax):
@ -16,8 +20,7 @@
2012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
* w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific
code.
* w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
2012-03-25 Kenichi Handa <handa@m17n.org>

View file

@ -1881,7 +1881,7 @@ safe_run_hooks_error (Lisp_Object error_data)
= CONSP (Vinhibit_quit) ? XCAR (Vinhibit_quit) : Vinhibit_quit;
Lisp_Object fun = CONSP (Vinhibit_quit) ? XCDR (Vinhibit_quit) : Qnil;
Lisp_Object args[4];
args[0] = build_string ("Error in %s (%s): %s");
args[0] = build_string ("Error in %s (%s): %S");
args[1] = hook;
args[2] = fun;
args[3] = error_data;