From 99307eb786c90d22c8a9e8080f79a6be3ca74099 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 18 Feb 2013 20:55:04 +0100 Subject: [PATCH] ox-ascii: Fix quote block transcoding * lisp/ox-ascii.el (org-ascii-quote-block): Do not fill quote block contents. Just indent them. --- lisp/ox-ascii.el | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lisp/ox-ascii.el b/lisp/ox-ascii.el index d6594a499..95ed8d95d 100644 --- a/lisp/ox-ascii.el +++ b/lisp/ox-ascii.el @@ -1462,11 +1462,7 @@ channel." "Transcode a QUOTE-BLOCK element from Org to ASCII. CONTENTS holds the contents of the block. INFO is a plist holding contextual information." - (let ((width (org-ascii--current-text-width quote-block info))) - (org-ascii--indent-string - (org-remove-indentation - (org-ascii--fill-string contents width info)) - org-ascii-quote-margin))) + (org-ascii--indent-string contents org-ascii-quote-margin)) ;;;; Quote Section