projects
/
m17n
/
m17n-db.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9e6a4d7
)
(/^[0-9A-F]+\.\./): Fix regex for matching.
author
handa
<handa>
Sun, 10 Jun 2007 09:01:24 +0000
(09:01 +0000)
committer
handa
<handa>
Sun, 10 Jun 2007 09:01:24 +0000
(09:01 +0000)
SCRIPT.awk
patch
|
blob
|
history
diff --git
a/SCRIPT.awk
b/SCRIPT.awk
index
ce85552
..
66ec768
100644
(file)
--- a/
SCRIPT.awk
+++ b/
SCRIPT.awk
@@
-122,7
+122,7
@@
function maybe_emit(ch1, ch2, this_script) {
}
/^[0-9A-F]+\.\./ {
- maybe_emit(decode_hex($0, 1), decode_hex($0, match($0, "\.\.") + 2), $2);
+ maybe_emit(decode_hex($0, 1), decode_hex($0, match($0, "\\.\\.") + 2), $2);
next;
}