1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-10 14:00:41 +00:00

'#' 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

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