From 678ea7fe4a02c3009a8c25a27857b37591f06b3a Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Sun, 16 Oct 2016 12:28:00 -0500 Subject: [PATCH] RST.lisp: Remove call to VISIT-NODE WRITE-DOCUMENT method for all writers already calls VISIT-NODE. --- plugins/rst.lisp | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/rst.lisp b/plugins/rst.lisp index 255932e..6019f31 100644 --- a/plugins/rst.lisp +++ b/plugins/rst.lisp @@ -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 ())