From: Kirk McKusick Date: Sat, 11 Jun 1983 06:44:31 +0000 (-0800) Subject: pass -J flag through to pc0 so it can handle big case statements X-Git-Tag: BSD-4_2-Snapshot-Development~1573 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/84345867575fd5231f80696709eb83f794c5491c pass -J flag through to pc0 so it can handle big case statements SCCS-vsn: usr.bin/pascal/pc/pc.c 3.24 --- diff --git a/usr/src/usr.bin/pascal/pc/pc.c b/usr/src/usr.bin/pascal/pc/pc.c index ee64691b43..accc28230e 100644 --- a/usr/src/usr.bin/pascal/pc/pc.c +++ b/usr/src/usr.bin/pascal/pc/pc.c @@ -1,4 +1,4 @@ -static char sccsid[] = "@(#)pc.c 3.23 %G%"; +static char sccsid[] = "@(#)pc.c 3.24 %G%"; #include #include @@ -283,6 +283,8 @@ main(argc, argv) pc0argx = savargx; if (pflag) pc0args[pc0argx++] = "-p"; + if (Jflag) + pc0args[pc0argx++] = "-J"; pc0args[pc0argx++] = argp; pc0args[pc0argx] = 0; if (dosys(pc0, pc0args, 0, 0))