tweaks: reshuffle some lines to get standard order (first up, then down)
parent
b4b9e9b012
commit
4b32c62674
10
src/text.c
10
src/text.c
|
@ -3287,16 +3287,16 @@ void do_linter(void)
|
|||
else if (func == do_help_void) {
|
||||
tmplint = NULL;
|
||||
do_help_void();
|
||||
} else if (func == do_page_down || func == do_next_block) {
|
||||
if (curlint->next != NULL)
|
||||
curlint = curlint->next;
|
||||
else
|
||||
statusbar(_("At last message"));
|
||||
} else if (func == do_page_up || func == do_prev_block) {
|
||||
if (curlint->prev != NULL)
|
||||
curlint = curlint->prev;
|
||||
else
|
||||
statusbar(_("At first message"));
|
||||
} else if (func == do_page_down || func == do_next_block) {
|
||||
if (curlint->next != NULL)
|
||||
curlint = curlint->next;
|
||||
else
|
||||
statusbar(_("At last message"));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue