bad hack to make compilation go through

svn: r11935

original commit: 76172dd0f3669dd9011c7ecb4e4e864d6e3d85cf
This commit is contained in:
Eli Barzilay 2008-10-04 21:20:35 +00:00
parent d173c0e6bc
commit 420041b903

View File

@ -304,7 +304,9 @@
null)
(define/override (render-blockquote t part ri)
(let ([kind (or (blockquote-style t) "quote")])
(let* ([kind (or (blockquote-style t) "quote")]
;; FIXME temporary hack to avoid a \begin{blockquote}
[kind (if (eq? 'blockquote kind) "quote" kind)])
(printf "\n\n\\begin{~a}\n" kind)
(parameterize ([current-table-mode (list "blockquote" t)])
(for ([e (blockquote-paragraphs t)]) (render-block e part ri #f)))