From 951111c353c5eabe6c855f0a78362512d4d20d18 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sun, 29 Mar 2015 16:45:09 -0700 Subject: Fixes one-off error in previous commit. --- src/commonmark.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/commonmark.c') diff --git a/src/commonmark.c b/src/commonmark.c index 640779d..e87e119 100644 --- a/src/commonmark.c +++ b/src/commonmark.c @@ -416,7 +416,7 @@ S_render_node(cmark_node *node, cmark_event_type ev_type, for (i = 0; i < numticks; i++) { lit(state, "`", false); } - if (code->len <= 1 || code->data[0] == '`') { + if (code->len == 0 || code->data[0] == '`') { lit(state, " ", false); } out(state, node->as.literal, true, LITERAL); -- cgit v1.2.3