(decode_mode_spec) [!MULTI_FRAME]: Handle %F properly.

This commit is contained in:
Richard M. Stallman 1995-06-21 18:47:11 +00:00
parent ae6b58f9d4
commit 9cb61f8dfd

View file

@ -3487,7 +3487,11 @@ decode_mode_spec (w, c, maxwidth)
case 'F':
/* %F displays the frame name. */
#ifdef MULTI_FRAME
return (char *) XSTRING (selected_frame->name)->data;
#else
return "Emacs";
#endif
case 'f':
obj = b->filename;