pass -J flag through to pc0 so it can handle big case statements
authorKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Sat, 11 Jun 1983 06:44:31 +0000 (22:44 -0800)
committerKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Sat, 11 Jun 1983 06:44:31 +0000 (22:44 -0800)
SCCS-vsn: usr.bin/pascal/pc/pc.c 3.24

usr/src/usr.bin/pascal/pc/pc.c

index ee64691..accc282 100644 (file)
@@ -1,4 +1,4 @@
-static char sccsid[] = "@(#)pc.c 3.23 %G%";
+static char sccsid[] = "@(#)pc.c 3.24 %G%";
 
 #include <stdio.h>
 #include <signal.h>
 
 #include <stdio.h>
 #include <signal.h>
@@ -283,6 +283,8 @@ main(argc, argv)
                pc0argx = savargx;
                if (pflag)
                        pc0args[pc0argx++] = "-p";
                pc0argx = savargx;
                if (pflag)
                        pc0args[pc0argx++] = "-p";
+               if (Jflag)
+                       pc0args[pc0argx++] = "-J";
                pc0args[pc0argx++] = argp;
                pc0args[pc0argx] = 0;
                if (dosys(pc0, pc0args, 0, 0))
                pc0args[pc0argx++] = argp;
                pc0args[pc0argx] = 0;
                if (dosys(pc0, pc0args, 0, 0))