branch: externals-release/org commit ab828ad8dcb8355a51d5846394e8312dc34e2e5d Author: Ihor Radchenko <yanta...@posteo.net> Commit: Ihor Radchenko <yanta...@posteo.net>
org-capture-templates: Fix :type specification * lisp/org-capture.el (org-capture-templates): Fix missing allowed value in type specification. Reported-by: kickingvegas (at OrgMeetup) --- lisp/org-capture.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/org-capture.el b/lisp/org-capture.el index b5ec4a0128..156f4ec810 100644 --- a/lisp/org-capture.el +++ b/lisp/org-capture.el @@ -454,6 +454,8 @@ you can escape ambiguous cases with a backward slash, e.g., \\%i." (function :tag " Function")) (list :tag "Current clocking task" (const :format "" clock)) + (list :tag "The position at point" + (const :format "" here)) (list :tag "Function" (const :format "" function) (function :tag " Function")))