1
1

* editcmd.c (catstrs): Use interactive_display() without

specifying the help file.
From Andrew V. Samoilov.
Этот коммит содержится в:
Pavel Roskin 2001-06-09 07:24:04 +00:00
родитель 58d8979490
Коммит 97b1ab977f
2 изменённых файлов: 7 добавлений и 3 удалений

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

@ -1,3 +1,9 @@
2001-06-09 Pavel Roskin <proski@gnu.org>
* editcmd.c (catstrs): Use interactive_display() without
specifying the help file.
From Andrew V. Samoilov.
2001-06-08 Andrew V. Samoilov <sav@bcs.zp.ua>
* editcmd.c [HAVE_CHARSET]: Really include charset.h.

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

@ -169,9 +169,7 @@ char *catstrs (const char *first,...)
void edit_help_cmd (WEdit * edit)
{
char *hlpdir = concat_dir_and_file (mc_home, _("mc.hlp"));
interactive_display (hlpdir, "[Internal File Editor]");
free (hlpdir);
interactive_display (NULL, "[Internal File Editor]");
edit->force |= REDRAW_COMPLETELY;
}