From b629de09dbcbd0e9cf0680dde02a74b4884cda6c Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Mon, 16 Oct 2017 18:21:12 -0600 Subject: [PATCH] etags.c indentation fix --- lib-src/etags.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/lib-src/etags.c b/lib-src/etags.c index eb6d31a6607..e31aedb87c4 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c @@ -1285,19 +1285,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; -- 2.39.5