-g now turns on -flno

This commit is contained in:
Dale Weiler 2012-12-02 23:52:38 +00:00
parent 1ca3e72417
commit 16ae493a9a

5
main.c
View file

@ -304,6 +304,11 @@ static bool options_parse(int argc, char **argv) {
opts_pp_only = true;
break;
/* debug turns on -flno */
case 'g':
options_setflag("LNO", true);
break;
/* handle all -fflags */
case 'f':
util_strtocmd(argv[0]+2, argv[0]+2, strlen(argv[0]+2)+1);