From 7ce14ef3c33c4e5a43108001f1a6726d8f148c35 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Sat, 16 Apr 2011 13:19:33 +0300 Subject: [PATCH] Remove extra newline Nope. Don't add newlines after
---
 render/xhtml.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/render/xhtml.c b/render/xhtml.c
index ea1fc28..5407a0e 100755
--- a/render/xhtml.c
+++ b/render/xhtml.c
@@ -119,9 +119,9 @@ rndr_blockcode(struct buf *ob, struct buf *text, struct buf *syntax, void *opaqu
 	if (syntax && syntax->size) {
 		BUFPUTSL(ob, "
data, syntax->size);
-		BUFPUTSL(ob, "\">\n");
+		BUFPUTSL(ob, "\">");
 	} else
-		BUFPUTSL(ob, "
\n");
+		BUFPUTSL(ob, "
");
 
 	if (text)
 		lus_attr_escape(ob, text->data, text->size);