summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tmpl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tmpl.c b/tmpl.c
index 3bcae1b..3ac5622 100644
--- a/tmpl.c
+++ b/tmpl.c
@@ -157,6 +157,8 @@ template(char *line)
*sep = '=';
assign(line + 9);
}
+ } else if (!strncmp(line, "\\#", 2)) {
+ puts(line+1); /* escaped */
} else if (!strncmp(line, "#-- ", 4)) {
return; /* comment */
} else {