Relayouted all switch statements: case aligns with switch.
[mmh] / sbr / getans.c
index 919fd32..af882d5 100644 (file)
@@ -52,15 +52,15 @@ getans(char *prompt, struct swit *ansp)
                }
                cpp = brkstring(ansbuf, " ", NULL);
                switch (smatch(*cpp, ansp)) {
-                       case AMBIGSW:
-                               ambigsw(*cpp, ansp);
-                               continue;
-                       case UNKWNSW:
-                               printf(" -%s unknown. Hit <CR> for help.\n", *cpp);
-                               continue;
-                       default:
-                               SIGNAL(SIGINT, istat);
-                               return cpp;
+               case AMBIGSW:
+                       ambigsw(*cpp, ansp);
+                       continue;
+               case UNKWNSW:
+                       printf(" -%s unknown. Hit <CR> for help.\n", *cpp);
+                       continue;
+               default:
+                       SIGNAL(SIGINT, istat);
+                       return cpp;
                }
        }
 }