mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2025-02-07 21:35:02 +00:00
Fix customize definition so that it works also in XEmacs.
`org-refile-target' was using (const :tag), which can be confusing, and XEmacs is actually confused by it. So we now use (const :value :tag) instead.
This commit is contained in:
parent
db5c609be9
commit
6fbcc77e99
@ -1,3 +1,7 @@
|
||||
2008-11-21 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* org.el (org-refile-targets): Fix customize definition so
|
||||
that it works also in XEmacs.
|
||||
|
||||
2008-11-21 Tokuya Kameshima <kames@fa2.so-net.ne.jp>
|
||||
|
||||
|
10
lisp/org.el
10
lisp/org.el
@ -1322,11 +1322,11 @@ are used, equivalent to the value `((nil . (:level . 1))'."
|
||||
(const :tag "Current buffer" nil)
|
||||
(function) (variable) (file))
|
||||
(choice :tag "Identify target headline by"
|
||||
(cons :tag "Specific tag" (const :tag) (string))
|
||||
(cons :tag "TODO keyword" (const :todo) (string))
|
||||
(cons :tag "Regular expression" (const :regexp) (regexp))
|
||||
(cons :tag "Level number" (const :level) (integer))
|
||||
(cons :tag "Max Level number" (const :maxlevel) (integer))))))
|
||||
(cons :tag "Specific tag" (const :value :tag) (string))
|
||||
(cons :tag "TODO keyword" (const :value :todo) (string))
|
||||
(cons :tag "Regular expression" (const :value :regexp) (regexp))
|
||||
(cons :tag "Level number" (const :value :level) (integer))
|
||||
(cons :tag "Max Level number" (const :value :maxlevel) (integer))))))
|
||||
|
||||
(defcustom org-refile-use-outline-path nil
|
||||
"Non-nil means, provide refile targets as paths.
|
||||
|
Loading…
x
Reference in New Issue
Block a user