Mercurial > emacs
changeset 17857:c39f34ef5d76
(make_terminal_frame): Don't add `Emacs' to frame name.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 17 May 1997 18:37:32 +0000 |
parents | 1e5f1a1f0db3 |
children | 72e538330a11 |
files | src/frame.c |
diffstat | 1 files changed, 2 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/src/frame.c Sat May 17 06:39:39 1997 +0000 +++ b/src/frame.c Sat May 17 18:37:32 1997 +0000 @@ -502,15 +502,8 @@ Vframe_list = Fcons (frame, Vframe_list); terminal_frame_count++; - if (terminal_frame_count == 1) - { - f->name = build_string ("Emacs"); - } - else - { - sprintf (name, "Emacs-%d", terminal_frame_count); - f->name = build_string (name); - } + sprintf (name, "F%d", terminal_frame_count); + f->name = build_string (name); f->visible = 1; /* FRAME_SET_VISIBLE wd set frame_garbaged. */ f->async_visible = 1; /* Don't let visible be cleared later. */