Commit d6c24649 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 735620 - [PATCH] Remove not needed variable caching in src/markdown.cpp

parent 94ea18e6
......@@ -1540,7 +1540,7 @@ static bool isTableBlock(const char *data,int size)
i+=ret; // goto next line
int cc2;
ret = findTableColumns(data+i,size-i,start,end,cc2);
findTableColumns(data+i,size-i,start,end,cc2);
//printf("isTableBlock: %d\n",cc1==cc2);
return cc1==cc2;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment