summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Dominik <carsten.dominik@gmail.com>2010-05-14 09:07:46 +0200
committerCarsten Dominik <carsten.dominik@gmail.com>2010-05-14 09:07:46 +0200
commit3f74a69f911183b5459fafd0a504a1fd1ca26b7d (patch)
tree80b6c09b26c1c0c0e809ea4c7a513c7e65eac1be
parent256b0dc88a2b5dfb54f17b0886e9b911dfce3dea (diff)
downloadorg-mode-3f74a69f911183b5459fafd0a504a1fd1ca26b7d.tar.gz
Fix minor bug
-rw-r--r--lisp/org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 5a67482..9c1b1b2 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -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))