ox-ascii: Fix quote block transcoding

* lisp/ox-ascii.el (org-ascii-quote-block): Do not fill quote block
  contents.  Just indent them.
This commit is contained in:
Nicolas Goaziou 2013-02-18 20:55:04 +01:00
parent e0e740b289
commit 99307eb786
1 changed files with 1 additions and 5 deletions

View File

@ -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