Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'maint'
author
Junio C Hamano
<gitster@pobox.com>
Thu, 23 Dec 2010 04:33:12 +0000
(20:33 -0800)
committer
Junio C Hamano
<gitster@pobox.com>
Thu, 23 Dec 2010 04:33:12 +0000
(20:33 -0800)
* maint:
test-lib.sh/test_decode_color(): use octal not hex in awk script
t/test-lib.sh
patch
|
blob
|
history
raw
(from parent 1:
19128d6
)
diff --git
a/t/test-lib.sh
b/t/test-lib.sh
index 48fa5160045d0bb2c14d034422b2ee5170889ec5..cb1ca973aa16d82b3c52cc2b7834d977887567a2 100644
(file)
--- a/
t/test-lib.sh
+++ b/
t/test-lib.sh
@@
-260,7
+260,7
@@
test_decode_color () {
if (n == 47) return "BWHITE";
}
{
- while (match($0, /\
x1b
\[[0-9;]*m/) != 0) {
+ while (match($0, /\
033
\[[0-9;]*m/) != 0) {
printf "%s<", substr($0, 1, RSTART-1);
codes = substr($0, RSTART+2, RLENGTH-3);
if (length(codes) == 0)