1
1

* layout.c (setup_panels): Revert unnecessary part of the

previous patch.  Call load_hint regardless of message_visible.
Reported by Dmitry Semyonov <Dmitry.Semyonov@oktet.ru>
Этот коммит содержится в:
Pavel Roskin 2002-12-27 17:52:24 +00:00
родитель 3bad66bae8
Коммит a47c40eaac
2 изменённых файлов: 9 добавлений и 5 удалений

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

@ -1,5 +1,9 @@
2002-12-27 Pavel Roskin <proski@gnu.org> 2002-12-27 Pavel Roskin <proski@gnu.org>
* layout.c (setup_panels): Revert unnecessary part of the
previous patch. Call load_hint regardless of message_visible.
Reported by Dmitry Semyonov <Dmitry.Semyonov@oktet.ru>
* key.c (correct_key_code): Don't call get_modifier() for normal * key.c (correct_key_code): Don't call get_modifier() for normal
characters - they only should get modifiers from sequences characters - they only should get modifiers from sequences
tables. This fixes entering characters with AltGr. tables. This fixes entering characters with AltGr.
@ -11,7 +15,7 @@
2002-12-26 Pavel Roskin <proski@gnu.org> 2002-12-26 Pavel Roskin <proski@gnu.org>
* key,c (get_modifier): Warning fix. * key.c (get_modifier): Warning fix.
* file.c: Never access internals of ctx->rx directly. * file.c: Never access internals of ctx->rx directly.
* fileopctx.c (file_op_context_destroy): Use regfree() to free * fileopctx.c (file_op_context_destroy): Use regfree() to free
@ -732,7 +736,7 @@
* main.c (OS_Setup): Use DATADIR instead of LIBDIR. Rename * main.c (OS_Setup): Use DATADIR instead of LIBDIR. Rename
MC_LIBDIR to MC_DATADIR. MC_LIBDIR to MC_DATADIR.
* panelize,c: Remove unused variable panelize_title. * panelize.c: Remove unused variable panelize_title.
* view.c (view_event): Add mouse wheel support. * view.c (view_event): Add mouse wheel support.
@ -3726,7 +3730,7 @@
2000-01-02 viro@math.psu.edu 2000-01-02 viro@math.psu.edu
* src/subshell.c: Reason: in feed_subshell() we are trying to read * src/subshell.c: Reason: in feed_subshell() we are trying to read
from shell pty,check for retval==-1 && errno != EIO. In that case from shell pty, check for retval==-1 && errno != EIO. In that case
we flame and exit. Otherwise we are trying to write what we've we flame and exit. Otherwise we are trying to write what we've
read. Good luck doing it if we got errno==EIO, which is _normal_ read. Good luck doing it if we got errno==EIO, which is _normal_
for situation when shell just died. Resulting write(1,foo,~0U) is for situation when shell just died. Resulting write(1,foo,~0U) is
@ -6642,7 +6646,7 @@ Sat Mar 7 14:33:38 1998 Pavel Roskin <pavel_roskin@geocities.com>
* vfs/vfs.h: Minor changes for OS/2. EMX defines mkdir with * vfs/vfs.h: Minor changes for OS/2. EMX defines mkdir with
2 arguments 2 arguments
* vfs/tcputil,c, vfs/utilvfs.c: signal.h was includes twice. * vfs/tcputil.c, vfs/utilvfs.c: signal.h was includes twice.
* vfs/Makefile.in: undelfs.h is not used and should disapper * vfs/Makefile.in: undelfs.h is not used and should disapper

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

@ -709,10 +709,10 @@ setup_panels (void)
if (message_visible) { if (message_visible) {
widget_set_size (&the_hint->widget, height + start_y, 0, 1, COLS); widget_set_size (&the_hint->widget, height + start_y, 0, 1, COLS);
set_hintbar (""); /* clean up the line */ set_hintbar (""); /* clean up the line */
load_hint ();
} else } else
widget_set_size (&the_hint->widget, 0, 0, 0, 0); widget_set_size (&the_hint->widget, 0, 0, 0, 0);
load_hint ();
update_xterm_title_path (); update_xterm_title_path ();
} }