Require htmlfontify.el only if emacs-version is greater than 23.2.
* org-odt.el (require): Require htmlfontify.el only if emacs-version is greater than 23.2. Thanks to Martyn Jago for reporting this.
This commit is contained in:
parent
ca7d04cd66
commit
6a4343a461
|
@ -28,7 +28,9 @@
|
||||||
;;; Code:
|
;;; Code:
|
||||||
(eval-when-compile
|
(eval-when-compile
|
||||||
(require 'cl)
|
(require 'cl)
|
||||||
(require 'htmlfontify))
|
;; htmlfontify.el was introduce in Emacs 23.2
|
||||||
|
(when (>= (string-to-number emacs-version) 23.2)
|
||||||
|
(require 'htmlfontify)))
|
||||||
(require 'org-lparse)
|
(require 'org-lparse)
|
||||||
|
|
||||||
(defgroup org-export-odt nil
|
(defgroup org-export-odt nil
|
||||||
|
|
Loading…
Reference in New Issue