1
Fork 0
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:
Eli Zaretskii 2008-08-26 03:13:34 +00:00
parent a648af17d1
commit 5cc67f65cd
2 changed files with 5 additions and 1 deletions

View file

@ -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

View file

@ -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;