mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2025-01-20 19:24:20 +00:00
Fix customization type of `org-tag-alist', to match James' patch.
This commit is contained in:
parent
b0834e5df2
commit
7e44d762e9
@ -1,3 +1,7 @@
|
||||
2009-10-23 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* org.el (org-tag-alist): Fix customization type.
|
||||
|
||||
2009-10-22 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* org-mobile.el (org-mobile-update-checksum-for-capture-file):
|
||||
|
@ -2283,8 +2283,12 @@ See the manual for details."
|
||||
(choice
|
||||
(cons (string :tag "Tag name")
|
||||
(character :tag "Access char"))
|
||||
(const :tag "Start radio group" (:startgroup))
|
||||
(const :tag "End radio group" (:endgroup))
|
||||
(list :tag "Start radio group"
|
||||
(const :startgroup)
|
||||
(option (string :tag "Group description")))
|
||||
(list :tag "End radio group"
|
||||
(const :endgroup)
|
||||
(option (string :tag "Group description")))
|
||||
(const :tag "New line" (:newline)))))
|
||||
|
||||
(defcustom org-tag-persistent-alist nil
|
||||
|
Loading…
Reference in New Issue
Block a user