1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-17 09:06:50 +02:00

(repeat-000): Rename to `repeat-zeros' for the same reason.

This commit is contained in:
Jim Meyering
2005-01-12 15:27:28 +00:00
parent fc539da2b0
commit 10d9154380
+2 -2
View File
@@ -108,9 +108,9 @@ my @tv = (
# Weird repeat counts.
['repeat-bs-9', q|abc '[b*\9]'|, 'abcd', '[b*d', 0],
['repeat-0', q|abc '[b*0]'|, 'abcd', 'bbbd', 0],
['repeat-000', q|abc '[b*00000000000000000000]'|, 'abcd', 'bbbd', 0],
['repeat-zeros', q|abc '[b*00000000000000000000]'|, 'abcd', 'bbbd', 0],
['repeat-compl', '-c ' . q|'[a*65536]\n' '[b*]'|, 'abcd', 'abbb', 0],
['repeat-bigC', '-C ' . q|'[a*65536]\n' '[b*]'|, 'abcd', 'abbb', 0],
['repeat-xC', '-C ' . q|'[a*65536]\n' '[b*]'|, 'abcd', 'abbb', 0],
# From Glenn Fowler.
['fowler-1', q|ah -H|, 'aha', '-H-', 0],