소스 검색

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.
Carsten Dominik 16 년 전
부모
커밋
bc5b23def7
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      contrib/lisp/org-choose.el

+ 2 - 1
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))
    ))