Fix minor bug

This commit is contained in:
Carsten Dominik 2010-05-14 09:07:46 +02:00
parent 256b0dc88a
commit 3f74a69f91
1 changed files with 1 additions and 1 deletions

View File

@ -4030,7 +4030,7 @@ means to push this value onto the list in the variable.")
(re-search-forward re nil t)))
(setq key (upcase (match-string 1 ext-setup-or-nil))
value (org-match-string-no-properties 2 ext-setup-or-nil))
(if stringp value (setq value (org-trim value)))
(if (stringp value) (setq value (org-trim value)))
(cond
((equal key "CATEGORY")
(setq cat value))