Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
657ceaa0
Commit
657ceaa0
authored
Aug 30, 2008
by
Eli Zaretskii
Browse files
(init_display): Set `tty's association in frame's parameters alist to the name
of the terminal device, if that is known.
parent
dbe6b8bb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
src/ChangeLog
src/ChangeLog
+6
-0
src/dispnew.c
src/dispnew.c
+7
-1
No files found.
src/ChangeLog
View file @
657ceaa0
2008-08-30 Eli Zaretskii <eliz@gnu.org>
* dispnew.c (init_display): Set `tty's association in frame's
parameters alist to the name of the terminal device, if that is
known.
2008-08-29 Jason Rumney <jasonr@gnu.org>
* w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
...
...
src/dispnew.c
View file @
657ceaa0
...
...
@@ -6944,7 +6944,13 @@ init_display ()
Fmodify_frame_parameters
(selected_frame, Fcons (Fcons (Qtty_type,
Ftty_type (selected_frame)), Qnil));
Fmodify_frame_parameters (selected_frame, Fcons (Fcons (Qtty, Qnil), Qnil));
if (t->display_info.tty->name)
Fmodify_frame_parameters (selected_frame,
Fcons (Fcons (Qtty, build_string (t->display_info.tty->name)),
Qnil));
else
Fmodify_frame_parameters (selected_frame, Fcons (Fcons (Qtty, Qnil),
Qnil));
}
{
...
...
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