tweaks: adjust comments and indentation after the previous change

master
Benno Schulenberg 2020-07-06 16:59:35 +02:00
parent 5899181a31
commit 727abceb0f
1 changed files with 7 additions and 7 deletions

View File

@ -3016,16 +3016,16 @@ void do_verbatim_input(void)
/* Read in the first one or two bytes of the next keystroke. */ /* Read in the first one or two bytes of the next keystroke. */
bytes = get_verbatim_kbinput(edit, &count); bytes = get_verbatim_kbinput(edit, &count);
/* When something valid was obtained, unsuppress cursor-position display,
* insert the bytes into the edit buffer, and blank the status bar. */
if (count > 0) { if (count > 0) {
/* Unsuppress cursor-position display or blank the status bar. */ if (ISSET(CONSTANT_SHOW))
if (ISSET(CONSTANT_SHOW)) lastmessage = VACUUM;
lastmessage = VACUUM;
else
wipe_statusbar();
/* Insert the bytes into the edit buffer. */ inject(bytes, count);
inject(bytes, count); wipe_statusbar();
} else } else
/* TRANSLATORS: An invalid verbatim Unicode code was typed. */
statusline(ALERT, _("Invalid code")); statusline(ALERT, _("Invalid code"));
free(bytes); free(bytes);