]> git.eshelyaron.com Git - emacs.git/commitdiff
etags.c indentation fix
authorTom Tromey <tom@tromey.com>
Tue, 17 Oct 2017 00:21:12 +0000 (18:21 -0600)
committerTom Tromey <tom@tromey.com>
Wed, 17 Jan 2018 23:09:39 +0000 (16:09 -0700)
lib-src/etags.c

index eb6d31a6607cfe4273324fb62636577f93d7a649..e31aedb87c48d76f57d5fb1d52c9be488d38d99e 100644 (file)
@@ -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;