diff options
author | Kriton Kyrimis <kyrimis@princeton.edu> | 1988-02-01 04:35:21 +0000 |
---|---|---|
committer | Larry Wall <lwall@jpl-devvax.jpl.nasa.gov> | 1988-02-01 04:35:21 +0000 |
commit | 9bb9d9f726fa55c70ed76abad9fe7c61d4eb4182 (patch) | |
tree | b31ea68d7f4dc2e2d30b150698df92735e4c251a /patchlevel.h | |
parent | 83b4785aebef542ad391e53b49c107fc5e1b4a58 (diff) | |
download | perl-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.h | 2 |
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 |