diff options
author | Jarkko Hietaniemi <jhi@alpha.hut.fi> | 1996-10-07 22:03:00 +0300 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1996-10-07 22:03:00 +0300 |
commit | 543615716d005cc8e0142cd923f7d24e55702f78 (patch) | |
tree | ea924a83cda741b852b09c954ad24463f4b525de /t/base | |
parent | 51594c39ec0a5df8dda24c63498418e94d9787e1 (diff) | |
download | perl-543615716d005cc8e0142cd923f7d24e55702f78.tar.gz |
LC_COLLATE.
Big patch to add, document, and test LC_COLLATE support.
\n not necessarily lt ' '.
Diffstat (limited to 't/base')
-rwxr-xr-x | t/base/term.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/base/term.t b/t/base/term.t index 42cd56fe0b..7bbb80ee90 100755 --- a/t/base/term.t +++ b/t/base/term.t @@ -7,7 +7,7 @@ print "1..6\n"; # check "" interpretation $x = "\n"; -if ($x lt ' ') {print "ok 1\n";} else {print "not ok 1\n";} +if ($x eq chr(10)) {print "ok 1\n";} else {print "not ok 1\n";} # check `` processing |