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
6c4429a5
Commit
6c4429a5
authored
Apr 03, 1995
by
Karl Heuer
Browse files
(message_nolog): New function.
parent
1979717a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
src/xdisp.c
src/xdisp.c
+13
-0
No files found.
src/xdisp.c
View file @
6c4429a5
...
...
@@ -515,6 +515,19 @@ message (m, a1, a2, a3)
}
}
/* The non-logging version of that function. */
void
message_nolog (m, a1, a2, a3)
char *m;
EMACS_INT a1, a2, a3;
{
Lisp_Object old_log_max;
old_log_max = Vmessage_log_max;
Vmessage_log_max = Qnil;
message (m, a1, a2, a3);
Vmessage_log_max = old_log_max;
}
void
update_echo_area ()
{
...
...
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