aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorCarsten Dominik2008-05-11 22:54:56 +0000
committerCarsten Dominik2008-05-11 22:54:56 +0000
commit6dc30f4463e8a9bd587bcf4bc5e3e172dd745680 (patch)
tree8e59fcbf6b85588080b397157b78cff6b50062ce /lisp
parentba8a4d08709366eec49e85570e64c412468b33e8 (diff)
downloademacs-6dc30f4463e8a9bd587bcf4bc5e3e172dd745680.tar.gz
emacs-6dc30f4463e8a9bd587bcf4bc5e3e172dd745680.zip
* org/org.el (org-modules): Repair problems with loading
org-jsinfo.org.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/org/org.el8
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/org/org.el b/lisp/org/org.el
index a71291b866c..281b4ab732f 100644
--- a/lisp/org/org.el
+++ b/lisp/org/org.el
@@ -138,7 +138,11 @@ With prefix arg HERE, insert it at point."
138 (when (featurep 'org) 138 (when (featurep 'org)
139 (org-load-modules-maybe 'force))) 139 (org-load-modules-maybe 'force)))
140 140
141(defcustom org-modules '(org-bbdb org-bibtex org-gnus org-info org-infojs org-irc org-mew org-mhe org-rmail org-vm org-wl) 141(when (org-bound-and-true-p org-modules)
142 (let ((a (member 'org-infojs org-modules)))
143 (and a (setcar a 'org-jsinfo))))
144
145(defcustom org-modules '(org-bbdb org-bibtex org-gnus org-info org-jsinfo org-irc org-mew org-mhe org-rmail org-vm org-wl)
142 "Modules that should always be loaded together with org.el. 146 "Modules that should always be loaded together with org.el.
143If a description starts with <C>, the file is not part of Emacs 147If a description starts with <C>, the file is not part of Emacs
144and loading it will require that you have downloaded and properly installed 148and loading it will require that you have downloaded and properly installed
@@ -158,7 +162,7 @@ to add the symbol `xyz', and the package must have a call to
158 (const :tag " bibtex: Links to BibTeX entries" org-bibtex) 162 (const :tag " bibtex: Links to BibTeX entries" org-bibtex)
159 (const :tag " gnus: Links to GNUS folders/messages" org-gnus) 163 (const :tag " gnus: Links to GNUS folders/messages" org-gnus)
160 (const :tag " info: Links to Info nodes" org-info) 164 (const :tag " info: Links to Info nodes" org-info)
161 (const :tag " infojs: Set up Sebastian Rose's JavaScript org-info.js" org-infojs) 165 (const :tag " jsinfo: Set up Sebastian Rose's JavaScript org-info.js" org-jsinfo)
162 (const :tag " irc: Links to IRC/ERC chat sessions" org-irc) 166 (const :tag " irc: Links to IRC/ERC chat sessions" org-irc)
163 (const :tag " mac-message: Links to messages in Apple Mail" org-mac-message) 167 (const :tag " mac-message: Links to messages in Apple Mail" org-mac-message)
164 (const :tag " mew Links to Mew folders/messages" org-mew) 168 (const :tag " mew Links to Mew folders/messages" org-mew)