From: FreeBirdLjj Date: Sat, 4 Oct 2014 15:10:08 +0000 (+0800) Subject: No need to check IS_CODE here. X-Git-Url: https://git.danieliu.xyz/?p=smdp.git;a=commitdiff_plain;h=65f9a2c33e571f7f4cda2d7bf147a7ed1bb5a7cd No need to check IS_CODE here. --- 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;