diff options
| author | Richard M. Stallman | 1996-01-17 21:58:51 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-01-17 21:58:51 +0000 |
| commit | 22dabbb24d1034dd4111a634ef7e507fe3687561 (patch) | |
| tree | f6bc48ffc0787bd1a37b3fd3a8a0ce930cc0d417 /src | |
| parent | 628b60355299780dd84f1bcefb5cd665609de61a (diff) | |
| download | emacs-22dabbb24d1034dd4111a634ef7e507fe3687561.tar.gz emacs-22dabbb24d1034dd4111a634ef7e507fe3687561.zip | |
(decode_mode_spec, case 'F'): Use `title' field.
Diffstat (limited to 'src')
| -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) | |||
| 3665 | case 'F': | 3665 | case 'F': |
| 3666 | /* %F displays the frame name. */ | 3666 | /* %F displays the frame name. */ |
| 3667 | #ifdef MULTI_FRAME | 3667 | #ifdef MULTI_FRAME |
| 3668 | if (!NILP (selected_frame->title)) | ||
| 3669 | return (char *) XSTRING (selected_frame->title)->data; | ||
| 3668 | return (char *) XSTRING (selected_frame->name)->data; | 3670 | return (char *) XSTRING (selected_frame->name)->data; |
| 3669 | #else | 3671 | #else |
| 3670 | return "Emacs"; | 3672 | return "Emacs"; |