diff options
| author | Stefan Monnier | 2012-03-28 11:54:54 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2012-03-28 11:54:54 -0400 |
| commit | e8fc049ff7ed71d570f320d9a90d8b2546db5de2 (patch) | |
| tree | 1cb1f468b6f312098e360881618c59838e9badc5 /src/keyboard.c | |
| parent | 38de3354b79e6d58d130adeee12a98d35b00db47 (diff) | |
| download | emacs-e8fc049ff7ed71d570f320d9a90d8b2546db5de2.tar.gz emacs-e8fc049ff7ed71d570f320d9a90d8b2546db5de2.zip | |
* src/keyboard.c (safe_run_hooks_error): Don't unquote strings.
Diffstat (limited to 'src/keyboard.c')
| -rw-r--r-- | src/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index e60420599c9..79223116b2f 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -1881,7 +1881,7 @@ safe_run_hooks_error (Lisp_Object error_data) | |||
| 1881 | = CONSP (Vinhibit_quit) ? XCAR (Vinhibit_quit) : Vinhibit_quit; | 1881 | = CONSP (Vinhibit_quit) ? XCAR (Vinhibit_quit) : Vinhibit_quit; |
| 1882 | Lisp_Object fun = CONSP (Vinhibit_quit) ? XCDR (Vinhibit_quit) : Qnil; | 1882 | Lisp_Object fun = CONSP (Vinhibit_quit) ? XCDR (Vinhibit_quit) : Qnil; |
| 1883 | Lisp_Object args[4]; | 1883 | Lisp_Object args[4]; |
| 1884 | args[0] = build_string ("Error in %s (%s): %s"); | 1884 | args[0] = build_string ("Error in %s (%s): %S"); |
| 1885 | args[1] = hook; | 1885 | args[1] = hook; |
| 1886 | args[2] = fun; | 1886 | args[2] = fun; |
| 1887 | args[3] = error_data; | 1887 | args[3] = error_data; |