diff options
author | Sébastien Delafond <sdelafond@gmail.com> | 2014-10-13 11:01:35 +0200 |
---|---|---|
committer | Sébastien Delafond <sdelafond@gmail.com> | 2014-10-13 11:01:35 +0200 |
commit | 4dc4918d0d667f18f3d5e3dd71e6f117ddb8af8a (patch) | |
tree | 6a236a48e820fe956c9737b967f9517e09a9137e /lisp/ox-publish.el | |
parent | f57fab831252ebe5037ceabe9843623c4bd14f15 (diff) |
Imported Upstream version 8.2.10
Diffstat (limited to 'lisp/ox-publish.el')
-rw-r--r-- | lisp/ox-publish.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/ox-publish.el b/lisp/ox-publish.el index 1dc790d..efc70d2 100644 --- a/lisp/ox-publish.el +++ b/lisp/ox-publish.el @@ -881,7 +881,7 @@ publishing will be done asynchronously, in another process." ;; project is still a string here. (list (assoc project org-publish-project-alist))))) (if async - (org-export-async-start 'ignore + (org-export-async-start (lambda (results) nil) `(let ((org-publish-use-timestamps-flag (if ',force nil ,org-publish-use-timestamps-flag))) (org-publish-projects ',project-alist))) @@ -899,7 +899,7 @@ optional argument ASYNC, publishing will be done asynchronously, in another process." (interactive "P") (if async - (org-export-async-start 'ignore + (org-export-async-start (lambda (results) nil) `(progn (when ',force (org-publish-remove-all-timestamps)) (let ((org-publish-use-timestamps-flag @@ -921,7 +921,7 @@ asynchronously, in another process." (interactive "P") (let ((file (buffer-file-name (buffer-base-buffer)))) (if async - (org-export-async-start 'ignore + (org-export-async-start (lambda (results) nil) `(let ((org-publish-use-timestamps-flag (if ',force nil ,org-publish-use-timestamps-flag))) (org-publish-file ,file))) |