summary refs log tree commit diff stats
path: root/ht.awk
diff options
context:
space:
mode:
Diffstat (limited to 'ht.awk')
-rwxr-xr-xht.awk4
1 files changed, 2 insertions, 2 deletions
diff --git a/ht.awk b/ht.awk index c15ccc0..04506a9 100755 --- a/ht.awk +++ b/ht.awk
@@ -56,9 +56,9 @@ $0 ~ ("^" COMMENT_DELIM) {
56# Blocks of text 56# Blocks of text
57/./ { 57/./ {
58 # EOL escape 58 # EOL escape
59 if (match($0, /\\$/)) { 59 if (match($0, /[^\\]\\$/)) {
60 sep = -1 60 sep = -1
61 $0 = substr($0, 1, RSTART - 1) 61 $0 = substr($0, 1, RSTART)
62 } else { 62 } else {
63 sep = "\n" 63 sep = "\n"
64 } 64 }