* app.c: Fix formatting.
[deliverable/binutils-gdb.git] / gas / input-file.c
index 798f327d0f573c9f64daf67a218443ee92825c53..5c23f31eacfb9abe1bde8df60d21a4041e2f4ab9 100644 (file)
@@ -157,29 +157,29 @@ input_file_open (filename, pre)
       /* Begins with comment, may not want to preprocess.  */
       c = getc (f_in);
       if (c == 'N')
-        {
-          fgets (buf, 80, f_in);
-          if (!strncmp (buf, "O_APP", 5) && ISSPACE (buf[5]))
-            preprocess = 0;
-          if (!strchr (buf, '\n'))
-            ungetc ('#', f_in);        /* It was longer.  */
-          else
-            ungetc ('\n', f_in);
-        }
+       {
+         fgets (buf, 80, f_in);
+         if (!strncmp (buf, "O_APP", 5) && ISSPACE (buf[5]))
+           preprocess = 0;
+         if (!strchr (buf, '\n'))
+           ungetc ('#', f_in); /* It was longer.  */
+         else
+           ungetc ('\n', f_in);
+       }
       else if (c == 'A')
-        {
-          fgets (buf, 80, f_in);
-          if (!strncmp (buf, "PP", 2) && ISSPACE (buf[2]))
-            preprocess = 1;
-          if (!strchr (buf, '\n'))
-            ungetc ('#', f_in);
-          else
-            ungetc ('\n', f_in);
-        }
+       {
+         fgets (buf, 80, f_in);
+         if (!strncmp (buf, "PP", 2) && ISSPACE (buf[2]))
+           preprocess = 1;
+         if (!strchr (buf, '\n'))
+           ungetc ('#', f_in);
+         else
+           ungetc ('\n', f_in);
+       }
       else if (c == '\n')
-        ungetc ('\n', f_in);
+       ungetc ('\n', f_in);
       else
-        ungetc ('#', f_in);
+       ungetc ('#', f_in);
     }
   else
     ungetc (c, f_in);
This page took 0.024678 seconds and 4 git commands to generate.