md_is_inline_link_spec: Fix EOL checking.
diff --git a/src/md4c.c b/src/md4c.c
index 3b1cca2..304733c 100644
--- a/src/md4c.c
+++ b/src/md4c.c
@@ -2344,7 +2344,7 @@ md_is_inline_link_spec(MD_CTX* ctx, const MD_LINE* lines, int n_lines,
/* Optional whitespace followed with final ')'. */
while(off < lines[line_index].end && ISWHITESPACE(off))
off++;
- if(off >= lines[line_index].end && ISNEWLINE(off)) {
+ if(off >= lines[line_index].end) {
line_index++;
if(line_index >= n_lines)
return FALSE;