From: Richard M. Stallman Date: Wed, 17 Jan 1996 21:58:51 +0000 (+0000) Subject: (decode_mode_spec, case 'F'): Use `title' field. X-Git-Tag: emacs-19.34~1654 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=22dabbb24d1034dd4111a634ef7e507fe3687561;p=emacs.git (decode_mode_spec, case 'F'): Use `title' field. --- diff --git a/src/xdisp.c b/src/xdisp.c index e35502375bc..f6ca3866c47 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -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";