From 9bb9d9f726fa55c70ed76abad9fe7c61d4eb4182 Mon Sep 17 00:00:00 2001 From: Kriton Kyrimis Date: Mon, 1 Feb 1988 04:35:21 +0000 Subject: perl 1.0 patch 12: scripts made by a2p doen't handle leading white space right on input Awk ignores leading whitespace on split. Perl by default does not. The a2p translator couldn't handle this. The fix is partly to a2p and partly to perl. Perl now has a way to specify to split to ignore leading white space as awk does. A2p now takes advantage of that. I also threw in an optimization that let's runtime patterns compile just once if they are known to be constant, so that split(' ') doesn't compile the pattern every time. --- patchlevel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'patchlevel.h') diff --git a/patchlevel.h b/patchlevel.h index 98702f8e84..bc5f1c8250 100644 --- a/patchlevel.h +++ b/patchlevel.h @@ -1 +1 @@ -#define PATCHLEVEL 11 +#define PATCHLEVEL 12 -- cgit v1.2.1