Minor fixes

This commit is contained in:
Carsten Dominik 2010-04-07 13:41:40 +02:00
parent 5b1171d6e7
commit 33fbdf0522
3 changed files with 7 additions and 1 deletions

View File

@ -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>

View File

@ -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 ")

View File

@ -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))))