소스 검색

Minor fixes

Carsten Dominik 15 년 전
부모
커밋
33fbdf0522
3개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 0
      lisp/ChangeLog
  2. 1 1
      lisp/org-entities.el
  3. 2 0
      lisp/org.el

+ 4 - 0
lisp/ChangeLog

@@ -1,5 +1,9 @@
 2010-04-07  Carsten Dominik  <carsten.dominik@gmail.com>
 
+	* org-entities.el (org-entities-user): Fix typo.
+
+	* org.el (org-prepare-agenda-buffers): Uniquify TODO keywords
+
 	* org-entities.el (org-entities-user): Improve docstring.
 
 2010-04-06  Carsten Dominik  <carsten.dominik@gmail.com>

+ 1 - 1
lisp/org-entities.el

@@ -66,7 +66,7 @@ utf-8 replacement    Use special character available in utf-8.
 
 If you define new entities here that require specific LaTeX packages to be
 loaded, add these packages to `org-export-latex-packages-alist'."
-  :Group 'org-entities
+  :group 'org-entities
   :type '(repeat
 	  (list
 	   (string :tag "name  ")

+ 2 - 0
lisp/org.el

@@ -14960,6 +14960,8 @@ When a buffer is unmodified, it is just killed.  When modified, it is saved
 		(add-text-properties
 		 (match-beginning 0) (org-end-of-subtree t) pc)))
 	    (set-buffer-modified-p bmp)))))
+    (setq org-todo-keywords-for-agenda
+          (org-uniquify org-todo-keywords-for-agenda))
     (setq org-todo-keyword-alist-for-agenda
 	  (org-uniquify org-todo-keyword-alist-for-agenda)
 	  org-tag-alist-for-agenda (org-uniquify org-tag-alist-for-agenda))))