Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e8fc049f
Commit
e8fc049f
authored
Mar 28, 2012
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/keyboard.c (safe_run_hooks_error): Don't unquote strings.
parent
38de3354
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
src/ChangeLog
src/ChangeLog
+5
-2
src/keyboard.c
src/keyboard.c
+1
-1
No files found.
src/ChangeLog
View file @
e8fc049f
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>
...
...
src/keyboard.c
View file @
e8fc049f
...
...
@@ -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;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment