aboutsummaryrefslogtreecommitdiff
path: root/bin/mi5.awk
diff options
context:
space:
mode:
Diffstat (limited to 'bin/mi5.awk')
-rw-r--r--bin/mi5.awk6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/mi5.awk b/bin/mi5.awk
index fad03035..48d71657 100644
--- a/bin/mi5.awk
+++ b/bin/mi5.awk
@@ -119,9 +119,9 @@ bmac && NF {
# If we're still in a macro expansion or quote by this point, something's
# wrong; say so and stop, rather than print anything silly.
if (iquo)
- fatal("Unterminated inline quote");
+ fatal("Unterminated inline quote")
else if (imac)
- fatal("Unterminated inline macro");
+ fatal("Unterminated inline macro")
else
print dst
}
@@ -130,7 +130,7 @@ bmac && NF {
# stopped all our blocks
END {
if (bmac)
- fatal("Unterminated block macro");
+ fatal("Unterminated block macro")
else
print unquote dnl
}