emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] feature/etags-update b629de0 1/4: etags.c indentation fix


From: Tom Tromey
Subject: [Emacs-diffs] feature/etags-update b629de0 1/4: etags.c indentation fix
Date: Wed, 17 Jan 2018 18:15:10 -0500 (EST)

branch: feature/etags-update
commit b629de09dbcbd0e9cf0680dde02a74b4884cda6c
Author: Tom Tromey <address@hidden>
Commit: Tom Tromey <address@hidden>

    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 eb6d31a..e31aedb 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;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]