[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r107695: * src/keyboard.c (safe_run_h
From: |
Stefan Monnier |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r107695: * src/keyboard.c (safe_run_hooks_error): Don't unquote strings. |
Date: |
Wed, 28 Mar 2012 11:54:54 -0400 |
User-agent: |
Bazaar (2.3.1) |
------------------------------------------------------------
revno: 107695
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Wed 2012-03-28 11:54:54 -0400
message:
* src/keyboard.c (safe_run_hooks_error): Don't unquote strings.
modified:
src/ChangeLog
src/keyboard.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog 2012-03-27 06:46:42 +0000
+++ b/src/ChangeLog 2012-03-28 15:54:54 +0000
@@ -1,3 +1,7 @@
+2012-03-28 Stefan Monnier <address@hidden>
+
+ * keyboard.c (safe_run_hooks_error): Don't unquote strings.
+
2012-03-27 Glenn Morris <address@hidden>
* search.c (Fword_search_backward_lax, Fword_search_forward_lax):
@@ -16,8 +20,7 @@
2012-03-25 Fabrice Popineau <address@hidden>
- * 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 <address@hidden>
=== modified file 'src/keyboard.c'
--- a/src/keyboard.c 2012-03-26 04:06:31 +0000
+++ b/src/keyboard.c 2012-03-28 15:54:54 +0000
@@ -1881,7 +1881,7 @@
= 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;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r107695: * src/keyboard.c (safe_run_hooks_error): Don't unquote strings.,
Stefan Monnier <=