1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-23 10:34:07 +00:00

(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;