summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-03-02 10:25:10 +0100
committerBastien Guerry <bzg@altern.org>2013-03-02 10:25:10 +0100
commit8decdbcd23f985e0baf0dd24113e2dc0a8f1784d (patch)
tree1b65d2a9f5e43a9b82c013df17230168bdb72d0f
parent3049f1c75fc361ddcdb68faaef35acc8330a89f2 (diff)
downloadorg-mode-8decdbcd23f985e0baf0dd24113e2dc0a8f1784d.tar.gz
Add (provide ...) forms.
E.g., if a user requires the 'org-icalendar feature, he really wants to load 'ox-icalendar if it's in her load-path.
-rw-r--r--lisp/ox-ascii.el1
-rw-r--r--lisp/ox-beamer.el1
-rw-r--r--lisp/ox-html.el1
-rw-r--r--lisp/ox-icalendar.el1
-rw-r--r--lisp/ox-latex.el1
-rw-r--r--lisp/ox-odt.el1
-rw-r--r--lisp/ox-publish.el1
7 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ox-ascii.el b/lisp/ox-ascii.el
index f7a713f..ee05b7d 100644
--- a/lisp/ox-ascii.el
+++ b/lisp/ox-ascii.el
@@ -1946,6 +1946,7 @@ Return output file name."
(provide 'ox-ascii)
+(provide 'org-ascii) ; Stay compatible with <8.0 configurations
;; Local variables:
;; generated-autoload-file: "org-loaddefs.el"
diff --git a/lisp/ox-beamer.el b/lisp/ox-beamer.el
index 24d58bd..76ead55 100644
--- a/lisp/ox-beamer.el
+++ b/lisp/ox-beamer.el
@@ -1244,6 +1244,7 @@ Return output file name."
(provide 'ox-beamer)
+(provide 'org-beamer) ; Stay compatible with <8.0 configurations
;; Local variables:
;; generated-autoload-file: "org-loaddefs.el"
diff --git a/lisp/ox-html.el b/lisp/ox-html.el
index 236e8cd..f925b3c 100644
--- a/lisp/ox-html.el
+++ b/lisp/ox-html.el
@@ -3215,6 +3215,7 @@ Return output file name."
;;;; alt = (file-name-nondirectory path)
(provide 'ox-html)
+(provide 'org-html) ; Stay compatible with <8.0 configurations
;; Local variables:
;; generated-autoload-file: "org-loaddefs.el"
diff --git a/lisp/ox-icalendar.el b/lisp/ox-icalendar.el
index 22c7b65..c709b7f 100644
--- a/lisp/ox-icalendar.el
+++ b/lisp/ox-icalendar.el
@@ -990,6 +990,7 @@ files to build the calendar from."
(provide 'ox-icalendar)
+(provide 'org-icalendar) ; Stay compatible with <8.0 configurations
;; Local variables:
;; generated-autoload-file: "org-loaddefs.el"
diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el
index 6f4052b..a36f607 100644
--- a/lisp/ox-latex.el
+++ b/lisp/ox-latex.el
@@ -2888,6 +2888,7 @@ Return output file name."
(provide 'ox-latex)
+(provide 'org-latex) ; Stay compatible with <8.0 configurations
;; Local variables:
;; generated-autoload-file: "org-loaddefs.el"
diff --git a/lisp/ox-odt.el b/lisp/ox-odt.el
index e7f21f2..43a15d7 100644
--- a/lisp/ox-odt.el
+++ b/lisp/ox-odt.el
@@ -4376,6 +4376,7 @@ using `org-open-file'."
org-odt-file-extensions)
(provide 'ox-odt)
+(provide 'org-odt) ; Stay compatible with <8.0 configurations
;; Local variables:
;; generated-autoload-file: "org-loaddefs.el"
diff --git a/lisp/ox-publish.el b/lisp/ox-publish.el
index 2a89167..e0220e8 100644
--- a/lisp/ox-publish.el
+++ b/lisp/ox-publish.el
@@ -1207,6 +1207,7 @@ Returns value on success, else nil."
(provide 'ox-publish)
+(provide 'org-publish) ; Stay compatible with <8.0 configurations
;; Local variables:
;; generated-autoload-file: "org-loaddefs.el"