diff options
author | Andreas Koenig <a.koenig@mind.de> | 1997-04-23 10:47:00 +0200 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1997-04-23 00:00:00 +1200 |
commit | c1b0f331869f7723157d603165e544a78c1a6206 (patch) | |
tree | 30e10c0a49039cf61ba46883cf8bb5f5f1311a7e /pod | |
parent | 2ea6c7ce0488e1089687862028446bf8024c6a88 (diff) | |
download | perl-c1b0f331869f7723157d603165e544a78c1a6206.tar.gz |
Don't put leading newline on numeric strings
Subject: NeXT fails one test due to atoi
pragme/constants has a test that does the equivalent of:
print " \t\n1234" == 1234 ? "ok" : "not ok";
This test prints "not ok" on the NeXT. Here's some background how the
NeXT behaves with several leading whitespaces.
koenig@franz:/M/extra/sources/perl/perl5.003_97% perl -le '
print " \t\n1234" == 1234 ? "ok" : "not ok";
print " 1234" == 1234 ? "ok" : "not ok";
print "\t1234" == 1234 ? "ok" : "not ok";
print "\n1234" == 1234 ? "ok" : "not ok";
'
not ok
ok
ok
not ok
I'd recommend the following patch:
p5p-msgid: 199704230847.KAA22752@anna.in-berlin.de
Diffstat (limited to 'pod')
0 files changed, 0 insertions, 0 deletions