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:
parent
ae6b58f9d4
commit
9cb61f8dfd
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user