aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/xdisp.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 914c005a046..42a2fd0dcac 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12013-02-24 Andreas Schwab <schwab@linux-m68k.org>
2
3 * xdisp.c (set_message): Only check for debug-on-message if STRING
4 is a string. (Bug#13797)
5
12013-02-24 Paul Eggert <eggert@cs.ucla.edu> 62013-02-24 Paul Eggert <eggert@cs.ucla.edu>
2 7
3 Fix regression introduced by July 10 filelock.c patch. 8 Fix regression introduced by July 10 filelock.c patch.
diff --git a/src/xdisp.c b/src/xdisp.c
index 55d1272faaf..d42862b190a 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -10636,6 +10636,7 @@ set_message (const char *s, Lisp_Object string,
10636 help_echo_showing_p = 0; 10636 help_echo_showing_p = 0;
10637 10637
10638 if (STRINGP (Vdebug_on_message) 10638 if (STRINGP (Vdebug_on_message)
10639 && STRINGP (string)
10639 && fast_string_match (Vdebug_on_message, string) >= 0) 10640 && fast_string_match (Vdebug_on_message, string) >= 0)
10640 call_debugger (list2 (Qerror, string)); 10641 call_debugger (list2 (Qerror, string));
10641} 10642}