aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/mi5.awk3
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/mi5.awk b/bin/mi5.awk
index 27974274..0bcc1930 100644
--- a/bin/mi5.awk
+++ b/bin/mi5.awk
@@ -38,10 +38,9 @@ mac && NF {
dst = ""
# As long as there's a pair of opening and closing tags
- while (index(src,open)) {
+ while (ind = index(src, open) && index(src, shut) > ind) {
# Read up to opening tag into seg, shift from src
- ind = index(src, open)
seg = substr(src, 1, ind - 1)
src = substr(src, ind)