Skip to content

Commit

Permalink
Merge pull request #19 from egh/fix/async
Browse files Browse the repository at this point in the history
Fix async export signatures
  • Loading branch information
yoshinari-nomura committed Jun 28, 2015
2 parents c96d7ac + 2ea8dc1 commit be26547
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ox-jekyll.el
Expand Up @@ -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
Expand All @@ -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)
Expand Down

1 comment on commit be26547

@justin808
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@yoshinari-nomura Have you tried the async publishing of a project? I can't get it to work.

Please sign in to comment.