From: Tom Tromey Date: Tue, 17 Oct 2017 00:21:12 +0000 (-0600) Subject: etags.c indentation fix X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=06b20f7b01566925df3ee666df709397dff21eb2;p=emacs.git etags.c indentation fix --- diff --git a/lib-src/etags.c b/lib-src/etags.c index 4315771a496..cb6728bda12 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c @@ -1298,19 +1298,19 @@ main (int argc, char **argv) analyze_regex (argbuffer[i].what); break; case at_filename: - this_file = argbuffer[i].what; - /* Input file named "-" means read file names from stdin - (one per line) and use them. */ - if (streq (this_file, "-")) - { - if (parsing_stdin) - fatal ("cannot parse standard input " - "AND read file names from it"); - while (readline_internal (&filename_lb, stdin, "-") > 0) - process_file_name (filename_lb.buffer, lang); - } - else - process_file_name (this_file, lang); + this_file = argbuffer[i].what; + /* Input file named "-" means read file names from stdin + (one per line) and use them. */ + if (streq (this_file, "-")) + { + if (parsing_stdin) + fatal ("cannot parse standard input " + "AND read file names from it"); + while (readline_internal (&filename_lb, stdin, "-") > 0) + process_file_name (filename_lb.buffer, lang); + } + else + process_file_name (this_file, lang); break; case at_stdin: this_file = argbuffer[i].what;