'#' as an alternative to ';' to start a comment.

This commit is contained in:
Renaud 2015-08-19 15:43:50 +08:00
parent 02d12c5d84
commit 6b3061cedb
1 changed files with 1 additions and 1 deletions

2
exec.c
View File

@ -635,7 +635,7 @@ static int dobuf(struct buffer *bp)
++eline;
/* dump comments and blank lines */
if (*eline == ';' || *eline == 0)
if (*eline == ';' || *eline == '#' || *eline == 0)
goto onward;
#if DEBUGM