* src/keyboard.c (safe_run_hooks_error): Don't unquote strings.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 28 Mar 2012 15:54:54 +0000 (11:54 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 28 Mar 2012 15:54:54 +0000 (11:54 -0400)
src/ChangeLog
src/keyboard.c

index 381d2ad..1c74090 100644 (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>
 
index e604205..7922311 100644 (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;