Fix customize interface
* lisp/org.el (org-tag-alist, org-tag-persistent-alist): Add non-keyed tag type.
This commit is contained in:
parent
ec129f8e10
commit
1876514e26
10
lisp/org.el
10
lisp/org.el
|
@ -3574,8 +3574,10 @@ See also `org-tag-persistent-alist' to sidestep this behavior."
|
|||
:group 'org-tags
|
||||
:type '(repeat
|
||||
(choice
|
||||
(cons (string :tag "Tag name")
|
||||
(character :tag "Access char"))
|
||||
(cons :tag "Tag with key"
|
||||
(string :tag "Tag name")
|
||||
(character :tag "Access char"))
|
||||
(list :tag "Tag" (string :tag "Tag name"))
|
||||
(const :tag "Start radio group" (:startgroup))
|
||||
(const :tag "Start tag group, non distinct" (:startgrouptag))
|
||||
(const :tag "Group tags delimiter" (:grouptags))
|
||||
|
@ -3607,8 +3609,10 @@ on a per-file basis, insert anywhere in the file:
|
|||
:group 'org-tags
|
||||
:type '(repeat
|
||||
(choice
|
||||
(cons (string :tag "Tag name")
|
||||
(cons :tag "Tag with key"
|
||||
(string :tag "Tag name")
|
||||
(character :tag "Access char"))
|
||||
(list :tag "Tag" (string :tag "Tag name"))
|
||||
(const :tag "Start radio group" (:startgroup))
|
||||
(const :tag "Start tag group, non distinct" (:startgrouptag))
|
||||
(const :tag "Group tags delimiter" (:grouptags))
|
||||
|
|
Loading…
Reference in New Issue