org-agenda: convert category to string

* org-agenda.el (org-format-agenda-item): Convert category to a string
if it is a symbol. This fixes the following call to
org-agenda-get-category-icon which fails if category is not a string.

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2010-11-25 01:02:12 +00:00 committed by Carsten Dominik
parent 143292aab5
commit 3061c7083d
1 changed files with 3 additions and 1 deletions

View File

@ -5044,7 +5044,9 @@ Any match of REMOVE-RE will be removed from TXT."
org-agenda-show-inherited-tags
org-agenda-hide-tags-regexp))
(let* ((category (or category
(if (stringp org-category)
org-category
(symbol-name org-category))
(if buffer-file-name
(file-name-sans-extension
(file-name-nondirectory buffer-file-name))