aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index f7f7898b476..973528bebf5 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -17192,6 +17192,19 @@ decode_mode_spec (w, c, field_width, precision, multibyte)
17192 return decode_mode_spec_buf; 17192 return decode_mode_spec_buf;
17193 } 17193 }
17194 17194
17195 case 'e':
17196#ifndef SYSTEM_MALLOC
17197 {
17198 extern char *spare_memory;
17199 if (spare_memory)
17200 return "";
17201 else
17202 return "!MEM FULL! ";
17203 }
17204#else
17205 return "";
17206#endif
17207
17195 case 'F': 17208 case 'F':
17196 /* %F displays the frame name. */ 17209 /* %F displays the frame name. */
17197 if (!NILP (f->title)) 17210 if (!NILP (f->title))