From 2ea8dc1fc605714ea2df675631120d6e1f0048ff Mon Sep 17 00:00:00 2001 From: Erik Hetzner Date: Sun, 28 Jun 2015 11:17:27 -0700 Subject: [PATCH] Fix async export signatures - org-export-to-buffer, org-export-to-file take an async arg --- ox-jekyll.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ox-jekyll.el b/ox-jekyll.el index 583b98e..7fcf255 100644 --- a/ox-jekyll.el +++ b/ox-jekyll.el @@ -247,7 +247,7 @@ holding export options." `(org-export-as 'jekyll ,subtreep ,visible-only ,body-only ',ext-plist)) (let ((outbuf (org-export-to-buffer 'jekyll "*Org Jekyll HTML Export*" - subtreep visible-only body-only ext-plist))) + nil subtreep visible-only body-only ext-plist))) ;; Set major mode. (with-current-buffer outbuf (set-auto-mode t)) (when org-export-show-temporary-export-buffer @@ -267,10 +267,10 @@ holding export options." (let ((org-export-coding-system org-html-coding-system)) `(expand-file-name (org-export-to-file - 'jekyll ,file ,subtreep ,visible-only ,body-only ',ext-plist)))) + 'jekyll ,file nil ,subtreep ,visible-only ,body-only ',ext-plist)))) (let ((org-export-coding-system org-html-coding-system)) (org-export-to-file - 'jekyll file subtreep visible-only body-only ext-plist))))) + 'jekyll file nil subtreep visible-only body-only ext-plist))))) ;;;###autoload (defun org-jekyll-publish-to-html (plist filename pub-dir)