summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Dominik <carsten.dominik@gmail.com>2009-02-08 14:12:56 +0100
committerCarsten Dominik <carsten.dominik@gmail.com>2009-02-08 14:12:56 +0100
commitbc5b23def7ea4a80fcc50063a9dd36f54c602616 (patch)
treec0b2e03165bdb6287fd126ea351f2240d514027c
parent56692965b707fc2d544e432311a81e2bda46f930 (diff)
downloadorg-mode-bc5b23def7ea4a80fcc50063a9dd36f54c602616.tar.gz
org-choose.el: Append new interpretation for custom widget
org-choose.el did prepend its new interpretation to the list of possible interpretations. Now it appends, as it should.
-rw-r--r--contrib/lisp/org-choose.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/lisp/org-choose.el b/contrib/lisp/org-choose.el
index 62af352..69d682a 100644
--- a/contrib/lisp/org-choose.el
+++ b/contrib/lisp/org-choose.el
@@ -468,7 +468,8 @@ NEW-MARK and OLD-MARK are the text of the new and old marks."
(add-to-list 'org-trigger-hook
#'org-choose-keep-sensible)
(add-to-list 'org-todo-interpretation-widgets
- '(:tag "Choose (to record decisions)" choose))
+ '(:tag "Choose (to record decisions)" choose)
+ 'append)
; CD (add-to-list 'org-todo-normal-interpretations 'choose))
))