1
1

* main.c (directory_history_list): Report error if cannot change

directory.
Этот коммит содержится в:
Pavel Roskin 2002-07-19 05:03:44 +00:00
родитель 3358ffb440
Коммит ead99974fb
2 изменённых файлов: 7 добавлений и 0 удалений

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

@ -1,3 +1,8 @@
2002-07-19 Pavel Roskin <proski@gnu.org>
* main.c (directory_history_list): Report error if cannot change
directory.
2002-07-16 Pavel Roskin <proski@gnu.org>
* main.c (do_execute): Don't ask to press any key when the shell

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

@ -1003,6 +1003,8 @@ directory_history_list (WPanel * panel)
r = _do_panel_cd (panel, s, cd_exact);
if (r)
directory_history_add (panel, panel->cwd);
else
message (1, MSG_ERROR, _("Could not change directory") );
g_free (s);
}
}