From 65f9a2c33e571f7f4cda2d7bf147a7ed1bb5a7cd Mon Sep 17 00:00:00 2001 From: FreeBirdLjj Date: Sat, 4 Oct 2014 23:10:08 +0800 Subject: [PATCH] No need to check IS_CODE here. --- src/parser.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/parser.c b/src/parser.c index 84f3c87..6294500 100644 --- a/src/parser.c +++ b/src/parser.c @@ -363,9 +363,6 @@ int markdown_analyse(cstring_t *text) { if(text->text[i] == ' ') { spaces++; - } else if(CHECK_BIT(bits, IS_CODE)) { - other++; - } else { switch(text->text[i]) { case '=': equals++; break; -- 2.20.1