diff options
| author | Richard M. Stallman | 1997-05-17 18:37:32 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-05-17 18:37:32 +0000 |
| commit | 0303e8da31e6456f62a51ea0718ef0e7d3b0ad1d (patch) | |
| tree | c628b3879a6e210393436e4060d62df01a8b8707 /src | |
| parent | ccd0d40c98d337c01e3c7602d8d6aaa3b0f099a0 (diff) | |
| download | emacs-0303e8da31e6456f62a51ea0718ef0e7d3b0ad1d.tar.gz emacs-0303e8da31e6456f62a51ea0718ef0e7d3b0ad1d.zip | |
(make_terminal_frame): Don't add `Emacs' to frame name.
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/frame.c b/src/frame.c index ac5458ca58d..22504128d61 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -502,15 +502,8 @@ make_terminal_frame () | |||
| 502 | Vframe_list = Fcons (frame, Vframe_list); | 502 | Vframe_list = Fcons (frame, Vframe_list); |
| 503 | 503 | ||
| 504 | terminal_frame_count++; | 504 | terminal_frame_count++; |
| 505 | if (terminal_frame_count == 1) | 505 | sprintf (name, "F%d", terminal_frame_count); |
| 506 | { | 506 | f->name = build_string (name); |
| 507 | f->name = build_string ("Emacs"); | ||
| 508 | } | ||
| 509 | else | ||
| 510 | { | ||
| 511 | sprintf (name, "Emacs-%d", terminal_frame_count); | ||
| 512 | f->name = build_string (name); | ||
| 513 | } | ||
| 514 | 507 | ||
| 515 | f->visible = 1; /* FRAME_SET_VISIBLE wd set frame_garbaged. */ | 508 | f->visible = 1; /* FRAME_SET_VISIBLE wd set frame_garbaged. */ |
| 516 | f->async_visible = 1; /* Don't let visible be cleared later. */ | 509 | f->async_visible = 1; /* Don't let visible be cleared later. */ |