summaryrefslogtreecommitdiff
path: root/patchlevel.h
diff options
context:
space:
mode:
authorKriton Kyrimis <kyrimis@princeton.edu>1988-02-01 04:35:21 +0000
committerLarry Wall <lwall@jpl-devvax.jpl.nasa.gov>1988-02-01 04:35:21 +0000
commit9bb9d9f726fa55c70ed76abad9fe7c61d4eb4182 (patch)
treeb31ea68d7f4dc2e2d30b150698df92735e4c251a /patchlevel.h
parent83b4785aebef542ad391e53b49c107fc5e1b4a58 (diff)
downloadperl-9bb9d9f726fa55c70ed76abad9fe7c61d4eb4182.tar.gz
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.
Diffstat (limited to 'patchlevel.h')
-rw-r--r--patchlevel.h2
1 files changed, 1 insertions, 1 deletions
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