support comments in dsn files
This commit is contained in:
parent
a3510713b9
commit
9a2829f1e2
|
@ -601,12 +601,22 @@ L_read:
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
cur = next;
|
cur = start;
|
||||||
|
|
||||||
|
// skip leading whitespace
|
||||||
|
while( cur<limit && isspace(*cur) )
|
||||||
|
++cur;
|
||||||
|
|
||||||
|
// if the first non-blank character is #, this line is a comment.
|
||||||
|
if( cur<limit && *cur=='#' )
|
||||||
|
goto L_read;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// skip leading whitespace
|
||||||
|
while( cur<limit && isspace(*cur) )
|
||||||
|
++cur;
|
||||||
}
|
}
|
||||||
|
|
||||||
// skip leading whitespace
|
|
||||||
while( cur<limit && isspace(*cur) )
|
|
||||||
++cur;
|
|
||||||
|
|
||||||
if( cur >= limit )
|
if( cur >= limit )
|
||||||
goto L_read;
|
goto L_read;
|
||||||
|
|
Loading…
Reference in New Issue