ox-icalendar: Fix thinko

* lisp/ox-icalendar.el (org-icalendar-export-current-agenda): Use
  `member' instead of `memq'.
This commit is contained in:
Nicolas Goaziou 2017-08-06 01:19:49 +02:00
parent 7e241af591
commit 4b89f5c0e4
1 changed files with 1 additions and 1 deletions

View File

@ -888,7 +888,7 @@ This function assumes major mode for current buffer is
(seen nil)) ;prevent duplicates
(while (setq p (next-single-property-change p 'org-hd-marker))
(let ((m (get-text-property p 'org-hd-marker)))
(when (and m (not (memq m seen)))
(when (and m (not (member m seen)))
(push m seen)
(with-current-buffer (marker-buffer m)
(org-with-wide-buffer