Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
014d93be
Commit
014d93be
authored
Sep 04, 2012
by
Paul Eggert
Browse files
* xdisp.c (set_message): Simplify and reindent last change.
parent
776f29e1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
src/ChangeLog
src/ChangeLog
+4
-0
src/xdisp.c
src/xdisp.c
+6
-6
No files found.
src/ChangeLog
View file @
014d93be
2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
* xdisp.c (set_message): Simplify and reindent last change.
2012-09-05 Juanma Barranquero <lekktu@gmail.com>
* makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
...
...
src/xdisp.c
View file @
014d93be
...
...
@@ -10601,12 +10601,12 @@ set_message (const char *s, Lisp_Object string,
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);
}
...
...
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