From 25093dc6ecb69086f1a5e1c9cc31632ce5438071 Mon Sep 17 00:00:00 2001 From: Tai Dinh Date: Fri, 17 Apr 2020 00:08:57 +0200 Subject: [PATCH] Fix lexical binding issue MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - This remove below warning when compilation Warning: assignment to free variable ‘retfile’ Warning: reference to free variable ‘retfile’ --- ox-reveal.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ox-reveal.el b/ox-reveal.el index 3df872d..d4a2c4f 100644 --- a/ox-reveal.el +++ b/ox-reveal.el @@ -1279,7 +1279,8 @@ transformed fragment attribute to ELEM's attr_html plist." (interactive) (let* ((extension (concat "." org-html-extension)) (file (org-export-output-file-name extension subtreep)) - (clientfile (org-export-output-file-name (concat "_client" extension) subtreep))) + (clientfile (org-export-output-file-name (concat "_client" extension) subtreep)) + (retfile)) ; export filename_client HTML file if multiplexing (setq client-multiplex nil) (let ((org-export-exclude-tags (cons "noexport_reveal" org-export-exclude-tags)))