From 88457acff411eca9b32c04b4bc100ef094a23c5c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 10 Oct 2014 11:05:06 +0200 Subject: [PATCH] ox: Fix "void-variable ignore" error when publishing * lisp/ox.el (org-export-async-start): Allow to use symbols as function. Thanks to Julien Cubizolles for reporting it. http://permalink.gmane.org/gmane.emacs.orgmode/91532 --- lisp/ox.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox.el b/lisp/ox.el index dd81ad13d..24d0c8745 100644 --- a/lisp/ox.el +++ b/lisp/ox.el @@ -5532,7 +5532,7 @@ and `org-export-to-file' for more specialized functions." ;; Register running process in stack. (org-export-add-to-stack (get-buffer ,proc-buffer) nil ,process) ;; Set-up sentinel in order to catch results. - (let ((handler ,fun)) + (let ((handler ',fun)) (set-process-sentinel ,process `(lambda (p status) -- 2.11.4.GIT