From 25f2ae88f5df6d084423c6d9cb911adb4ede1dfd Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 2 Mar 2013 19:31:12 +0100 Subject: [PATCH] ox-org: Silence byte-compiler --- lisp/ox-org.el | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lisp/ox-org.el b/lisp/ox-org.el index 6ee0217c7..7f43c1d28 100644 --- a/lisp/ox-org.el +++ b/lisp/ox-org.el @@ -26,14 +26,15 @@ ;;; Code: (require 'ox) +(declare-function htmlize-buffer "htmlize" (&optional buffer)) (defgroup org-export-org nil "Options for exporting Org mode files to Org." :tag "Org Export Org" - :group 'org-export) + :group 'org-export + :version "24.4" + :package-version '(Org . "8.0")) -(define-obsolete-variable-alias - 'org-export-htmlized-org-css-url org-org-htmlized-css-url "24.4") (defcustom org-org-htmlized-css-url nil "URL pointing to the CSS defining colors for htmlized Emacs buffers. Normally when creating an htmlized version of an Org buffer, @@ -45,11 +46,11 @@ creating an htmlized version of an Org buffer using `org-org-export-as-org' will include a link to this URL if the setting of `org-html-htmlize-output-type' is 'css." :group 'org-export-org - :version "24.4" - :package-version '(Org . "8.0") :type '(choice (const :tag "Don't include external stylesheet link" nil) (string :tag "URL or local href"))) +(define-obsolete-variable-alias + 'org-export-htmlized-org-css-url org-org-htmlized-css-url "24.4") (org-export-define-backend org ((babel-call . org-org-identity) -- 2.11.4.GIT