Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
0303e8da
Commit
0303e8da
authored
May 17, 1997
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(make_terminal_frame): Don't add `Emacs' to frame name.
parent
ccd0d40c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
9 deletions
+2
-9
src/frame.c
src/frame.c
+2
-9
No files found.
src/frame.c
View file @
0303e8da
...
...
@@ -502,15 +502,8 @@ make_terminal_frame ()
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. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment