Renamed history modules

This commit is contained in:
James Booth
2013-01-28 01:35:11 +00:00
parent 80e62cfa5f
commit c72d7ad6a6
11 changed files with 69 additions and 69 deletions

View File

@@ -514,14 +514,14 @@ _handle_edit(int result, const wint_t ch, char *input, int *size)
return 1;
case KEY_UP:
prev = history_previous(input, size);
prev = cmd_history_previous(input, size);
if (prev) {
inp_replace_input(input, prev, size);
}
return 1;
case KEY_DOWN:
next = history_next(input, size);
next = cmd_history_next(input, size);
if (next) {
inp_replace_input(input, next, size);
}