Browse Source

Ignore case of rss element names.

* org-feed.el (org-feed-parse-rss-feed): Ignore case of rss
element names.
David Maus 15 years ago
parent
commit
f1924d9224
1 changed files with 2 additions and 1 deletions
  1. 2 1
      lisp/org-feed.el

+ 2 - 1
lisp/org-feed.el

@@ -579,7 +579,8 @@ Assumes headers are indeed present!"
   "Parse BUFFER for RSS feed entries.
 Returns a list of entries, with each entry a property list,
 containing the properties `:guid' and `:item-full-text'."
-  (let (entries beg end item guid entry)
+  (let ((case-fold-search t)
+	entries beg end item guid entry)
     (with-current-buffer buffer
       (widen)
       (goto-char (point-min))