summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Dominik <carsten.dominik@gmail.com>2010-04-07 13:41:40 +0200
committerCarsten Dominik <carsten.dominik@gmail.com>2010-04-07 13:41:40 +0200
commit33fbdf0522d659116e90f7d0348c7e97323dcbc3 (patch)
tree29b4675ba50d9ee79e0c7e955d22480e120116ab
parent5b1171d6e7ae6f75eb27ca1258b859ffc3e322d0 (diff)
downloadorg-mode-33fbdf0522d659116e90f7d0348c7e97323dcbc3.tar.gz
Minor fixes
-rwxr-xr-xlisp/ChangeLog4
-rw-r--r--lisp/org-entities.el2
-rw-r--r--lisp/org.el2
3 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 79c4a40..7983b2f 100755
--- a/lisp/ChangeLog
+++ b/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>
diff --git a/lisp/org-entities.el b/lisp/org-entities.el
index b2afd2d..95233b5 100644
--- a/lisp/org-entities.el
+++ b/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 ")
diff --git a/lisp/org.el b/lisp/org.el
index d80bb91..6a663b3 100644
--- a/lisp/org.el
+++ b/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))))