# HG changeset patch # User Richard M. Stallman # Date 1130516867 0 # Node ID 737938f4c82644b2375662ea37396b3d631203c8 # Parent 8392b2926dd8d8860e8dd3c8d76a4dab75413dfb (decode_mode_spec): Define %e to indicate memory full. diff -r 8392b2926dd8 -r 737938f4c826 src/xdisp.c --- a/src/xdisp.c Fri Oct 28 16:26:45 2005 +0000 +++ b/src/xdisp.c Fri Oct 28 16:27:47 2005 +0000 @@ -17192,6 +17192,19 @@ 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))