diff main.c @ 193:079304130850

the option lists need to stay sorted.
author David A. Holland
date Fri, 12 Jun 2015 22:00:45 -0400
parents 16b4451e34b8
children f5981d0ee2b4
line wrap: on
line diff
--- a/main.c	Fri Jun 12 21:54:32 2015 -0400
+++ b/main.c	Fri Jun 12 22:00:45 2015 -0400
@@ -782,7 +782,6 @@
 	{ "MG",                         &mode.depend_assume_generated, true },
 	{ "MP",                         &mode.depend_issue_fakerules,  true },
 	{ "P",                          &mode.output_linenumbers,      false },
-	{ "p",                          &mode.output_cheaplinenumbers, true },
 	{ "Wcomment",                   &warns.nestcomment,    true },
 	{ "Wendif-labels",              &warns.endiflabels,    true },
 	{ "Werror",                     &mode.werror,          true },
@@ -796,6 +795,7 @@
 	{ "fdollars-in-identifiers",    &mode.input_allow_dollars,     true },
 	{ "fno-dollars-in-identifiers", &mode.input_allow_dollars,     false },
 	{ "nostdinc",                   &mode.do_stdinc,               false },
+	{ "p",                          &mode.output_cheaplinenumbers, true },
 	{ "undef",                      &mode.do_stddef,               false },
 };
 static const unsigned num_flag_options = HOWMANY(flag_options);