Fix lexical binding issue

- This remove below warning when compilation
  Warning: assignment to free variable ‘retfile’
  Warning: reference to free variable ‘retfile’
This commit is contained in:
Tai Dinh 2020-04-17 00:08:57 +02:00
parent 46d5d3856e
commit 25093dc6ec
1 changed files with 2 additions and 1 deletions

View File

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