Check-in [083cad82ff]
Not logged in
Overview

SHA1 Hash:083cad82ff9cdfebf1f8c09525496a57cfca087e
Date: 2009-12-08 10:10:04
User: stephan
Comment:rolled back my last commit for stripping P tags around UL/OL, which had broken logic.
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

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

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