diff options
| -rw-r--r-- | lisp/org/org.el | 8 |
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. |
| 143 | If a description starts with <C>, the file is not part of Emacs | 147 | If a description starts with <C>, the file is not part of Emacs |
| 144 | and loading it will require that you have downloaded and properly installed | 148 | and 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) |