(decode_mode_spec, case 'F'): Use `title' field.

This commit is contained in:
Richard M. Stallman 1996-01-17 21:58:51 +00:00
parent 628b603552
commit 22dabbb24d

View file

@ -3665,6 +3665,8 @@ decode_mode_spec (w, c, spec_width, maxwidth)
case 'F':
/* %F displays the frame name. */
#ifdef MULTI_FRAME
if (!NILP (selected_frame->title))
return (char *) XSTRING (selected_frame->title)->data;
return (char *) XSTRING (selected_frame->name)->data;
#else
return "Emacs";