Check-in [239139a907]
Not logged in
Overview

SHA1 Hash:239139a90722ca542b53bdf39cca96d0b5969d3a
Date: 2009-12-07 22:29:33
User: stephan
Comment:added second half of fix in #6f0df6c741
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/wikiformat.c from [b5af4fe5ac] to [899dde24c9].

@@ -849,11 +849,11 @@
 
 /*
 ** End a paragraph if we are in one.
 */
 static void endAutoParagraph(Renderer *p){
-  if( p->inAutoParagraph ){
+  if( p->inAutoParagraph && !(p->wikiList==MARKUP_OL || p->wikiList==MARKUP_UL)){
     popStackToTag(p, MARKUP_P);
     p->inAutoParagraph = 0;
   }
 }