[gnus git] branch master updated: m0-7-220-g798aa42 =1= gnus-icalendar small fix
Katsumi Yamaoka <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 798aa427d40a951fc1310d9d4ac5c0c773510b3e (commit)
from 316053a4ea014aba36b36f4d2dd9e83433a9c5df (commit)
- Log -----------------------------------------------------------------
commit 798aa427d40a951fc1310d9d4ac5c0c773510b3e
Author: Glenn Morris <[email protected]>
Date: Thu Sep 12 07:57:23 2013 +0000
gnus-icalendar small fix
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3c17104..a4b5ec4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
+2013-09-12 Glenn Morris <[email protected]>
+
+ * gnus-icalendar.el (gnus-icalendar-event--build-reply-event-body):
+ Avoid using `find', which i) might not be defined at runtime;
+ ii) does not work, since its default test is eql, not equal.
+ (gnus-mime-action-alist): Declare.
+
2013-09-11 Stefan Monnier <[email protected]>
* score-mode.el (gnus-score-mode-map): Move initialization
diff --git a/lisp/gnus-icalendar.el b/lisp/gnus-icalendar.el
index a946a58..e4e1ec2 100644
--- a/lisp/gnus-icalendar.el
+++ b/lisp/gnus-icalendar.el
@@ -257,7 +257,7 @@ status will be retrieved from the first matching attendee record."
((string= key "ATTENDEE") (update-attendee-status line))
((string= key "SUMMARY") (update-summary line))
((string= key "DTSTAMP") (update-dtstamp))
- ((find key '("ORGANIZER" "DTSTART" "DTEND"
+ ((member key '("ORGANIZER" "DTSTART" "DTEND"
"LOCATION" "DURATION" "SEQUENCE"
"RECURRENCE-ID" "UID")) line)
(t nil))))
@@ -816,6 +816,8 @@ is searched."
(gnus-icalendar-show-org-agenda
(with-current-buffer gnus-article-buffer gnus-icalendar-event)))
+(defvar gnus-mime-action-alist) ; gnus-art
+
(defun gnus-icalendar-setup ()
(add-to-list 'mm-inlined-types "text/calendar")
(add-to-list 'mm-automatic-display "text/calendar")
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 7 +++++++
lisp/gnus-icalendar.el | 8 +++++---
2 files changed, 12 insertions(+), 3 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project