Fixed non-working -c option in previous commit

This commit is contained in:
NovaRain
2020-01-07 06:56:26 +08:00
parent 77d498b58b
commit c8160aa6b0
+2 -1
View File
@@ -162,7 +162,7 @@ bool ProcessCommandLine(int argc, char* argv[])
int c;
int nIndentWidth;
while((c = getopt(argc, argv, "d1abes:")) != EOF)
while((c = getopt(argc, argv, "d1abes:c")) != EOF)
{
switch (c)
{
@@ -207,6 +207,7 @@ bool ProcessCommandLine(int argc, char* argv[])
g_strIndentFill += " ";
}
break;
case 'c':
useOldShortCircuit = true;
break;