mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-12-28 10:56:57 +00:00
Export back-ends: Fix some compilation errors
* lisp/ox-beamer.el (require): Require cl when compiling. * lisp/ox-icalendar.el (require): Require cl when compiling. * lisp/ox-jsinfo.el (require): Require cl when compiling. * lisp/ox-md.el (require): Require cl when compiling.
This commit is contained in:
parent
7f2d685219
commit
e3058f6855
@ -108,6 +108,7 @@
|
||||
|
||||
;;; Code:
|
||||
|
||||
(eval-when-compile (require 'cl))
|
||||
(require 'ox-latex)
|
||||
|
||||
|
||||
|
@ -43,6 +43,7 @@
|
||||
|
||||
;;; Code:
|
||||
|
||||
(eval-when-compile (require 'cl))
|
||||
(require 'ox-ascii)
|
||||
(declare-function org-bbdb-anniv-export-ical "org-bbdb" nil)
|
||||
|
||||
|
@ -35,10 +35,12 @@
|
||||
|
||||
;;; Code:
|
||||
|
||||
(eval-when-compile (require 'cl))
|
||||
(require 'ox-html)
|
||||
|
||||
(add-to-list 'org-export-filter-options-functions 'org-infojs-install-script)
|
||||
|
||||
|
||||
(defgroup org-export-infojs nil
|
||||
"Options specific for using org-info.js in HTML export."
|
||||
:tag "Org Export HTML INFOJS"
|
||||
|
@ -29,6 +29,7 @@
|
||||
|
||||
;;; Code:
|
||||
|
||||
(eval-when-compile (require 'cl))
|
||||
(require 'ox-html)
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user