Revert "Rename to file_list_get_last_previous_stack to make its purpose clearer"

This reverts commit cace73b26532500f2361c88c755d614b08ab2422.
This commit is contained in:
twinaphex 2014-10-17 19:32:28 +02:00
parent cace73b265
commit d774eb6bde
2 changed files with 2 additions and 2 deletions

View File

@ -220,7 +220,7 @@ void file_list_get_at_offset(const file_list_t *list, size_t index,
*file_type = list->list[index].type;
}
bool file_list_get_last_previous_stack(const file_list_t *list,
bool file_list_get_previous_stack(const file_list_t *list,
const char **path, const char **label,
unsigned *file_type)
{

View File

@ -56,7 +56,7 @@ void file_list_push(file_list_t *userdata, const char *path,
void file_list_pop(file_list_t *list, size_t *directory_ptr);
void file_list_clear(file_list_t *list);
bool file_list_get_last_previous_stack(const file_list_t *list,
bool file_list_get_previous_stack(const file_list_t *list,
const char **path, const char **label,
unsigned *file_type);