From d846bc8babb0764c895fc94f91b97e33851094fb Mon Sep 17 00:00:00 2001 From: Pádraig Brady Date: Wed, 2 Feb 2011 23:08:42 +0000 Subject: sort: fix --debug key highlighting when key start after key end This case was overlooked in commit bdde34f9, 2010-08-05, "sort: tune and refactor --debug code, and fix minor underlining bug" * src/sort.c (debug_key): Don't adjust the key end when it's before the key start. * tests/misc/sort-debug-keys: Add a test case. --- tests/misc/sort-debug-keys | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tests/misc/sort-debug-keys') diff --git a/tests/misc/sort-debug-keys b/tests/misc/sort-debug-keys index daa6c18b0..238c33e23 100755 --- a/tests/misc/sort-debug-keys +++ b/tests/misc/sort-debug-keys @@ -234,6 +234,10 @@ _ _ >a _ +A>chr10 + ^ no match for key +B>chr1 + ^ no match for key EOF ( @@ -275,6 +279,9 @@ env printf '1a\x002b\x00' | sort -s -n -z --debug # Check that \0 and \t intermix. printf '\0\ta\n' | sort -s -k2b,2 --debug | tr -d '\0' + +# Check that key end before key start is not underlined +printf 'A\tchr10\nB\tchr1\n' | sort -s -k2.4b,2.3n --debug ) > out compare out exp || fail=1 -- cgit v1.2.3-54-g00ecf