1
1

* widget.c (history_get): Set the history to the last item.

Reported by Adam Byrtek <alpha@debian.org>
Этот коммит содержится в:
Pavel Roskin 2003-02-18 21:43:46 +00:00
родитель fc0b31c73f
Коммит a2ef2fe88b
2 изменённых файлов: 6 добавлений и 1 удалений

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

@ -1,5 +1,8 @@
2003-02-18 Pavel Roskin <proski@gnu.org>
* widget.c (history_get): Set the history to the last item.
Reported by Adam Byrtek <alpha@debian.org>
* main.c (do_panel_cd): Record directory history for the panel
that changes the directory, not for the current panel.

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

@ -829,7 +829,9 @@ history_get (char *input_name)
}
g_free (profile);
/* return pointer to last entry in list */
/* return pointer to the last entry in the list */
hist = g_list_last (hist);
return hist;
}