RST.lisp: Remove call to VISIT-NODE

WRITE-DOCUMENT method for all writers already calls VISIT-NODE.
This commit is contained in:
Alexander Artemenko 2016-10-16 12:28:00 -05:00 committed by Javier Olaechea
parent 9e8bf5e4c9
commit 678ea7fe4a

View file

@ -17,7 +17,6 @@
(with-output-to-string (str)
(let ((writer (make-instance 'html-writer))
(document (read-rst text)))
(visit-node writer document)
(write-document writer document str))))
(defun enable ())