org.el: Enhance a docstring

* lisp/org.el (org-babel-load-languages): Enhance docstring.
This commit is contained in:
Bastien 2018-04-29 23:39:32 +02:00
parent 4aa2513882
commit 4697a19f6f
1 changed files with 12 additions and 8 deletions

View File

@ -234,15 +234,19 @@ file to byte-code before it is loaded."
(defcustom org-babel-load-languages '((emacs-lisp . t)) (defcustom org-babel-load-languages '((emacs-lisp . t))
"Languages which can be evaluated in Org buffers. "Languages which can be evaluated in Org buffers.
\\<org-mode-map>
This list can be used to load support for any of the languages This list can be used to load support for any of the languages
below, note that each language will depend on a different set of below. Each language will depend on a different set of system
system executables and/or Emacs modes. When a language is executables and/or Emacs modes.
\"loaded\", then code blocks in that language can be evaluated
with `org-babel-execute-src-block' bound by default to C-c When a language is \"loaded\", code blocks in that language can
C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can be evaluated with `org-babel-execute-src-block', which is bound
be set to remove code block evaluation from the C-c C-c by default to \\[org-ctrl-c-ctrl-c].
keybinding. By default only Emacs Lisp (which has no
requirements) is loaded." The `org-babel-no-eval-on-ctrl-c-ctrl-c' option can be set to
remove code block evaluation from \\[org-ctrl-c-ctrl-c]. By
default, only Emacs Lisp is loaded, since it has no specific
requirement."
:group 'org-babel :group 'org-babel
:set 'org-babel-do-load-languages :set 'org-babel-do-load-languages
:version "24.1" :version "24.1"