1
1

* main.c (init_xterm_support): Force xterm-style screen saving

and no mouse on "cygwin" terminal.
Этот коммит содержится в:
Pavel Roskin 2002-08-26 15:26:38 +00:00
родитель 6e1a272381
Коммит 2adae11aa4
2 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,8 @@
2002-08-26 Pavel Roskin <proski@gnu.org>
* main.c (init_xterm_support): Force xterm-style screen saving
and no mouse on "cygwin" terminal.
2002-08-25 Pavel Roskin <proski@gnu.org>
* man2hlp.c: Change default from the English string for TOPICS,

Просмотреть файл

@ -1558,6 +1558,11 @@ init_xterm_support (void)
xmouse_seq = NULL;
}
if (strcmp (termvalue, "cygwin") == 0) {
force_xterm = 1;
use_mouse_p = MOUSE_DISABLED;
}
if (force_xterm
|| strncmp (termvalue, "xterm", 5) == 0
|| strncmp (termvalue, "rxvt", 4) == 0