mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-27 07:41:28 -08:00
(get_named_tty): Fix last change.
This commit is contained in:
parent
a648af17d1
commit
5cc67f65cd
2 changed files with 5 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2008-08-26 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* term.c (get_named_tty): Fix last change.
|
||||
|
||||
2008-08-26 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* indent.c (Fvertical_motion): If moving forward starting from a
|
||||
|
|
|
|||
|
|
@ -2232,7 +2232,7 @@ get_named_tty (name)
|
|||
|
||||
for (t = terminal_list; t; t = t->next_terminal)
|
||||
{
|
||||
if (t->type == output_termcap || t->type == output_msdos_raw
|
||||
if ((t->type == output_termcap || t->type == output_msdos_raw)
|
||||
&& !strcmp (t->display_info.tty->name, name)
|
||||
&& TERMINAL_ACTIVE_P (t))
|
||||
return t;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue