diff options
| author | Richard M. Stallman <rms@gnu.org> | 1996-01-17 21:58:51 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1996-01-17 21:58:51 +0000 |
| commit | 22dabbb24d1034dd4111a634ef7e507fe3687561 (patch) | |
| tree | f6bc48ffc0787bd1a37b3fd3a8a0ce930cc0d417 | |
| parent | 628b60355299780dd84f1bcefb5cd665609de61a (diff) | |
| download | emacs-22dabbb24d1034dd4111a634ef7e507fe3687561.tar.gz | |
(decode_mode_spec, case 'F'): Use `title' field.
| -rw-r--r-- | src/xdisp.c | 2 |
1 files changed, 2 insertions, 0 deletions
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"; |
