mirror of
https://github.com/Ed94/metadesk.git
synced 2026-08-06 07:38:45 +00:00
do not leave spare carriage-return characters in node comments
This commit is contained in:
+1
-1
@@ -1131,7 +1131,7 @@ MD_Parse_LexNext(MD_ParseCtx *ctx)
|
|||||||
|
|
||||||
at += 2;
|
at += 2;
|
||||||
token.kind = MD_TokenKind_Comment;
|
token.kind = MD_TokenKind_Comment;
|
||||||
MD_TokenizerScan(*at != '\n');
|
MD_TokenizerScan(*at != '\n' && *at != '\r');
|
||||||
}
|
}
|
||||||
else if (at[1] == '*')
|
else if (at[1] == '*')
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user