Browse Source

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.
Bastien Guerry 12 years ago
parent
commit
8decdbcd23
7 changed files with 7 additions and 0 deletions
  1. 1 0
      lisp/ox-ascii.el
  2. 1 0
      lisp/ox-beamer.el
  3. 1 0
      lisp/ox-html.el
  4. 1 0
      lisp/ox-icalendar.el
  5. 1 0
      lisp/ox-latex.el
  6. 1 0
      lisp/ox-odt.el
  7. 1 0
      lisp/ox-publish.el

+ 1 - 0
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"

+ 1 - 0
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"

+ 1 - 0
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"

+ 1 - 0
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"

+ 1 - 0
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"

+ 1 - 0
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"

+ 1 - 0
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"