emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r109883: * xdisp.c (set_message): Sim


From: Paul Eggert
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109883: * xdisp.c (set_message): Simplify and reindent last change.
Date: Tue, 04 Sep 2012 20:37:32 -0700
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109883
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Tue 2012-09-04 20:37:32 -0700
message:
  * xdisp.c (set_message): Simplify and reindent last change.
modified:
  src/ChangeLog
  src/xdisp.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-09-05 00:30:14 +0000
+++ b/src/ChangeLog     2012-09-05 03:37:32 +0000
@@ -1,3 +1,7 @@
+2012-09-05  Paul Eggert  <address@hidden>
+
+       * xdisp.c (set_message): Simplify and reindent last change.
+
 2012-09-05  Juanma Barranquero  <address@hidden>
 
        * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.

=== modified file 'src/xdisp.c'
--- a/src/xdisp.c       2012-09-04 21:21:00 +0000
+++ b/src/xdisp.c       2012-09-05 03:37:32 +0000
@@ -10601,12 +10601,12 @@
   message_buf_print = 0;
   help_echo_showing_p = 0;
 
-  if (NILP (Vinhibit_debug_on_message) &&
-      STRINGP (Vdebug_on_message) &&
-      fast_string_match (Vdebug_on_message, string) >= 0) {
-    specbind (Qinhibit_debug_on_message, Qt);
-    call_debugger (Fcons (Qerror, Fcons (string, Qnil)));
-  }
+  if (NILP (Vinhibit_debug_on_message) && STRINGP (Vdebug_on_message)
+      && fast_string_match (Vdebug_on_message, string) >= 0)
+    {
+      specbind (Qinhibit_debug_on_message, Qt);
+      call_debugger (list2 (Qerror, string));
+    }
 
   unbind_to (count, Qnil);
 }


reply via email to

[Prev in Thread] Current Thread [Next in Thread]