commit
f327d42734
|
@ -47,15 +47,13 @@
|
|||
:group 'org-babel
|
||||
:type 'string)
|
||||
|
||||
(defcustom org-babel-python-mode 'python
|
||||
(defcustom org-babel-python-mode
|
||||
(if (or (featurep 'xemacs) (featurep 'python-mode)) 'python-mode 'python)
|
||||
"Preferred python mode for use in running python interactively.
|
||||
This will typically be either 'python or 'python-mode."
|
||||
:group 'org-babel
|
||||
:version "24.4"
|
||||
:package-version '(Org . "8.0")
|
||||
:set (lambda (var val)
|
||||
(set-default var (if (or (featurep 'xemacs) (featurep 'python-mode))
|
||||
'python-mode 'python)))
|
||||
:type 'symbol)
|
||||
|
||||
(defvar org-src-preserve-indentation)
|
||||
|
|
|
@ -1721,16 +1721,14 @@ In tables, the special behavior of RET has precedence."
|
|||
:group 'org-link-follow
|
||||
:type 'boolean)
|
||||
|
||||
(defcustom org-mouse-1-follows-link 450
|
||||
(defcustom org-mouse-1-follows-link
|
||||
(if (boundp 'mouse-1-click-follows-link) mouse-1-click-follows-link t)
|
||||
"Non-nil means mouse-1 on a link will follow the link.
|
||||
A longer mouse click will still set point. Does not work on XEmacs.
|
||||
Needs to be set before org.el is loaded."
|
||||
:group 'org-link-follow
|
||||
:version "24.4"
|
||||
:package-version '(Org . "8.3")
|
||||
:set (lambda (var val)
|
||||
(set-default var (if (boundp 'mouse-1-click-follows-link)
|
||||
mouse-1-click-follows-link t)))
|
||||
:type '(choice
|
||||
(const :tag "A double click follows the link" 'double)
|
||||
(const :tag "Unconditionally follow the link with mouse-1" t)
|
||||
|
|
|
@ -674,7 +674,7 @@ The function should return the string to be exported."
|
|||
|
||||
;;;; LaTeX
|
||||
|
||||
(defcustom org-html-with-latex t
|
||||
(defcustom org-html-with-latex org-export-with-latex
|
||||
"Non-nil means process LaTeX math snippets.
|
||||
|
||||
When set, the exporter will process LaTeX environments and
|
||||
|
@ -695,7 +695,6 @@ t Synonym for `mathjax'."
|
|||
:group 'org-export-html
|
||||
:version "24.4"
|
||||
:package-version '(Org . "8.0")
|
||||
:set (lambda (var val) (set-default var org-export-with-latex))
|
||||
:type '(choice
|
||||
(const :tag "Do not process math in any way" nil)
|
||||
(const :tag "Use dvipng to make images" dvipng)
|
||||
|
|
|
@ -705,7 +705,7 @@ The function should return the string to be exported."
|
|||
|
||||
;;;; LaTeX
|
||||
|
||||
(defcustom org-odt-with-latex t
|
||||
(defcustom org-odt-with-latex org-export-with-latex
|
||||
"Non-nil means process LaTeX math snippets.
|
||||
|
||||
When set, the exporter will process LaTeX environments and
|
||||
|
@ -726,7 +726,6 @@ t Synonym for `mathjax'."
|
|||
:group 'org-export-odt
|
||||
:version "24.4"
|
||||
:package-version '(Org . "8.0")
|
||||
:set (lambda (var val) (set-default var org-export-with-latex))
|
||||
:type '(choice
|
||||
(const :tag "Do not process math in any way" nil)
|
||||
(const :tag "Use dvipng to make images" dvipng)
|
||||
|
|
Loading…
Reference in New Issue