Commit 33c7a4ca authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

tweaks: adjust indentation after preceding changes

Also, shorten two variable names.
parent 40d34862
Showing with 21 additions and 24 deletions
+21 -24
...@@ -2533,33 +2533,30 @@ int main(int argc, char **argv) ...@@ -2533,33 +2533,30 @@ int main(int argc, char **argv)
#endif #endif
/* Read the named files on the command line into new buffers. */ /* Read the named files on the command line into new buffers. */
{ while (optind < argc && (!openfile || ISSET(MULTIBUFFER))) {
while (optind < argc && (!openfile || ISSET(MULTIBUFFER))) { ssize_t givenline = 0, givencol = 0;
ssize_t givenline = 0, givencol = 0;
/* If there's a +LINE[,COLUMN] argument here, eat it up. */
/* If there's a +LINE or +LINE,COLUMN flag here, it is followed if (optind < argc - 1 && argv[optind][0] == '+') {
* by at least one other argument: the filename it applies to. */ if (!parse_line_column(&argv[optind++][1], &givenline, &givencol))
if (optind < argc - 1 && argv[optind][0] == '+') { statusline(ALERT, _("Invalid line or column number"));
if (!parse_line_column(&argv[optind++][1], &givenline, &givencol)) }
statusline(ALERT, _("Invalid line or column number"));
} /* If opening fails, don't try to position the cursor. */
/* If opening fails, don't try to position the cursor. */ if (!open_buffer(argv[optind++], FALSE))
if (!open_buffer(argv[optind++], FALSE)) continue;
continue;
/* If a position was given on the command line, go there. */ /* If a position was given on the command line, go there. */
if (givenline > 0 || givencol > 0) if (givenline > 0 || givencol > 0)
do_gotolinecolumn(givenline, givencol, FALSE, FALSE); do_gotolinecolumn(givenline, givencol, FALSE, FALSE);
#ifndef DISABLE_HISTORIES #ifndef DISABLE_HISTORIES
else if (ISSET(POS_HISTORY)) { else if (ISSET(POS_HISTORY)) {
ssize_t savedposline, savedposcol; ssize_t savedline, savedcol;
/* If edited before, restore the last cursor position. */ /* If edited before, restore the last cursor position. */
if (has_old_position(argv[optind - 1], &savedposline, &savedposcol)) if (has_old_position(argv[optind - 1], &savedline, &savedcol))
do_gotolinecolumn(savedposline, savedposcol, do_gotolinecolumn(savedline, savedcol, FALSE, FALSE);
FALSE, FALSE);
}
#endif
} }
#endif
} }
/* If no filenames were given, or all of them were invalid things like /* If no filenames were given, or all of them were invalid things like
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment