Skip to content

Commit

Permalink
Merge pull request #22 from syohex/cl-lib
Browse files Browse the repository at this point in the history
Load cl-lib for using its macro
  • Loading branch information
kawabata committed Jul 6, 2017
2 parents d9cf410 + 5eec9d5 commit 63f1229
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ox-pandoc.el
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
;; Author: KAWABATA, Taichi <[email protected]>
;; Created: 2014-07-20
;; Version: 1.160629
;; Package-Requires: ((org "8.2") (emacs "24") (dash "2.8") (ht "2.0"))
;; Package-Requires: ((org "8.2") (emacs "24") (dash "2.8") (ht "2.0") (cl-lib "0.5"))
;; Keywords: tools
;; URL: https://github.com/kawabata/ox-pandoc

Expand All @@ -23,6 +23,7 @@
(require 'ox-org)
(require 'dash)
(require 'ht)
(require 'cl-lib)

(defgroup org-pandoc nil
"Options specific to Pandoc export back-end."
Expand Down Expand Up @@ -1417,7 +1418,7 @@ output."

(defun org-pandoc-sentinel (process message)
"PROCESS sentinel with MESSAGE."
(case (process-status process)
(cl-case (process-status process)
(run)
(signal
;; Warning. Temporary files not removed (for now.)
Expand Down

0 comments on commit 63f1229

Please sign in to comment.