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
fbfde322
Commit
fbfde322
authored
Oct 28, 2005
by
Richard M. Stallman
Browse files
(decode_mode_spec): Define %e to indicate memory full.
parent
8f2c9ed8
Changes
1
Show 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 @
fbfde322
...
...
@@ -17192,6 +17192,19 @@ decode_mode_spec (w, c, field_width, precision, multibyte)
return decode_mode_spec_buf;
}
case 'e':
#ifndef SYSTEM_MALLOC
{
extern char *spare_memory;
if (spare_memory)
return "";
else
return "!MEM FULL! ";
}
#else
return "";
#endif
case 'F':
/* %F displays the frame name. */
if (!NILP (f->title))
...
...
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