tweaks: reshuffle some lines to get standard order (first up, then down)

master
Benno Schulenberg 2018-09-29 09:46:05 +02:00
parent b4b9e9b012
commit 4b32c62674
1 changed files with 5 additions and 5 deletions

View File

@ -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"));
}
}