[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: another uniq buglet
From: |
Padraig Brady |
Subject: |
Re: another uniq buglet |
Date: |
Tue, 25 Sep 2001 16:44:22 +0100 |
User-agent: |
Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.4) Gecko/20010913 |
Padraig Brady wrote:
Since I changed the word precede -> prepend in the
previous patch to correlate with the info docs, the
./tests/uniq/Test.pm file needs to be updated (with the
attached patch). To apply:
cd textutils-2.0.15/tests/uniq; patch < uniq-2.0.15-delim-Test.pm.diff
Padraig.
I really hate when I do that!
--- Test-2.0.15.pm Tue Sep 25 16:40:40 2001
+++ Test.pm Tue Sep 25 16:38:23 2001
@@ -79,9 +79,9 @@
['113', '--all-repeated=separate',"a\na\n", "a\na\n", 0],
['114', '--all-repeated=separate',"a\na\nb\nc\nc\n", "a\na\n\nc\nc\n", 0],
['115', '--all-repeated=separate',"a\na\nb\nb\nc\n", "a\na\n\nb\nb\n", 0],
-['116', '--all-repeated=precede', "a\na\n", "\na\na\n", 0],
-['117', '--all-repeated=precede', "a\na\nb\nc\nc\n", "\na\na\n\nc\nc\n", 0],
-['118', '--all-repeated=precede', "a\nb\n", "", 0],
+['116', '--all-repeated=prepend', "a\na\n", "\na\na\n", 0],
+['117', '--all-repeated=prepend', "a\na\nb\nc\nc\n", "\na\na\n\nc\nc\n", 0],
+['118', '--all-repeated=prepend', "a\nb\n", "", 0],
['119', '--all-repeated=badoption', "a\n", "", 1],
);