summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/misc.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/misc.c b/src/misc.c
index 39483ea..9ead263 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -732,7 +732,10 @@ void skelout (void)
*/
#define cmd_match(s) (strncmp(buf,(s),strlen(s))==0)
- if (buf[1] == '%') {
+ if (buf[1] == '#') {
+ /* %# indicates comment line to be ignored */
+ }
+ else if (buf[1] == '%') {
/* %% is a break point for skelout() */
return;
}