0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-26 19:32:53 +00:00

Fix bug with agenda category

This commit is contained in:
Carsten Dominik 2009-10-07 10:32:58 +02:00
parent 7ce8e87b8e
commit 21a8656af6

View file

@ -4607,7 +4607,7 @@ Any match of REMOVE-RE will be removed from TXT."
;; And finally add the text properties
(remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
(org-add-props rtn nil
'org-category (downcase thecategory)
'org-category (if thecategory (downcase thecategory) category)
'tags (mapcar 'org-downcase-keep-props tags)
'org-highest-priority org-highest-priority
'org-lowest-priority org-lowest-priority