summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-04-15 17:04:18 +0000
committerJim Meyering <jim@meyering.net>2003-04-15 17:04:18 +0000
commit304665f2246dd05a37466a20b6d4394d72205380 (patch)
tree3f69203c4dba512b96b9fb3cc9881cf35fe6b427 /tests
parent4c4b16d783242407946d9eea43cf53a4d1a52732 (diff)
downloadcoreutils-304665f2246dd05a37466a20b6d4394d72205380.tar.xz
remove SPCs before TAB
Diffstat (limited to 'tests')
-rwxr-xr-xtests/sort/Test.pm16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/sort/Test.pm b/tests/sort/Test.pm
index 1633d7ca1..2f42ec584 100755
--- a/tests/sort/Test.pm
+++ b/tests/sort/Test.pm
@@ -227,17 +227,17 @@ my @tv = (
# be significant during comparison; but with GNU sort the newline is
# insignificant. Here is an example of the bug:
#
-# $ od -c t
-# 0000000 \n \t \n
-# 0000003
-# $ sort t | od -c
-# 0000000 \n \t \n
-# 0000003
+# $ od -c t
+# 0000000 \n \t \n
+# 0000003
+# $ sort t | od -c
+# 0000000 \n \t \n
+# 0000003
#
# The correct output of the latter command should be
#
-# 0000000 \t \n \n
-# 0000003
+# 0000000 \t \n \n
+# 0000003
#
# because \t comes before \n in the collating sequence, and the trailing
# \n's are part of the input line.