1
1

Sun Apr 12 02:24:57 1998 Norbert Warmuth <k3190@fh-sw.de>

* text.c (edition_post_exec), cmd.c (view_other_cmd): Don't change
the keypad mode when we don't use the alternate plus minus. Pavel
forgot an if-clause when he replaced the escape sequences (or
another point of view: I forgot one if-clause at different place).
Этот коммит содержится в:
Norbert Warmuth 1998-04-12 00:40:18 +00:00
родитель 17c155a00f
Коммит 6495812153
3 изменённых файлов: 13 добавлений и 4 удалений

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

@ -1,3 +1,10 @@
Sun Apr 12 02:24:57 1998 Norbert Warmuth <k3190@fh-sw.de>
* text.c (edition_post_exec), cmd.c (view_other_cmd): Don't change
the keypad mode when we don't use the alternate plus minus. Pavel
forgot an if-clause when he replaced the escape sequences (or
another point of view: I forgot one if-clause at different place).
Fri Apr 10 17:35:23 1998 Philippe De Muyter <phdm@macqel.be>
* configure.in (AC_NCURSES): When checking for library location,

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

@ -914,8 +914,8 @@ view_other_cmd (void)
if (clear_before_exec)
clr_scr ();
#endif
numeric_keypad_mode ();
if (alternate_plus_minus)
numeric_keypad_mode ();
#ifndef HAVE_SLANG
/* With slang we don't want any of this, since there
* is no mc_raw_mode supported
@ -952,7 +952,8 @@ view_other_cmd (void)
if (!status_using_ncurses)
do_enter_ca_mode ();
application_keypad_mode ();
if (alternate_plus_minus)
application_keypad_mode ();
reset_prog_mode ();
keypad(stdscr, TRUE);
#ifndef HAVE_X

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

@ -63,7 +63,8 @@ edition_post_exec (void)
channels_up ();
if (use_mouse_p)
init_mouse ();
application_keypad_mode ();
if (alternate_plus_minus)
application_keypad_mode ();
}
void