Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
856ec9ff
Commit
856ec9ff
authored
Apr 01, 2017
by
Noam Postavsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/xdisp.c (vmessage, message): Clarify commentary.
parent
849a0aaa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
src/xdisp.c
src/xdisp.c
+7
-3
No files found.
src/xdisp.c
View file @
856ec9ff
...
...
@@ -10470,9 +10470,12 @@ message_with_string (const char *m, Lisp_Object string, bool log)
/* Dump an informative message to the minibuf. If M is 0, clear out
any existing message, and let the mini-buffer text show through.
The message must be safe ASCII and the format must not contain ` or
'. If your message and format do not fit into this category,
convert your arguments to Lisp objects and use Fmessage instead. */
The message must be safe ASCII (because when Emacs is
non-interactive the message is sent straight to stderr without
encoding first) and the format must not contain ` or ' (because
this function does not account for `text-quoting-style'). If your
message and format do not fit into this category, convert your
arguments to Lisp objects and use Fmessage instead. */
static void ATTRIBUTE_FORMAT_PRINTF (1, 0)
vmessage (const char *m, va_list ap)
...
...
@@ -10530,6 +10533,7 @@ vmessage (const char *m, va_list ap)
}
}
/* See vmessage for restrictions on the text of the message. */
void
message (const char *m, ...)
{
...
...
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