X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=emacs%2Fnotmuch-show.el;h=0e558db87cbdb16db7e976a0f9988358408243e0;hb=294b6a67c1461f41ae331e5f7ea3cd07488cb3c2;hp=105532716c1cf6e5e9a79c2160fe11eb10539e70;hpb=53311617494feb4ce575e9676cba938b93d5ebfb;p=notmuch diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el index 10553271..0e558db8 100644 --- a/emacs/notmuch-show.el +++ b/emacs/notmuch-show.el @@ -945,7 +945,7 @@ than only the current message." (defun notmuch-show-add-tags-worker (current-tags add-tags) "Add to `current-tags' with any tags from `add-tags' not currently present and return the result." - (let ((result-tags (copy-seq current-tags))) + (let ((result-tags (copy-sequence current-tags))) (mapc (lambda (add-tag) (unless (member add-tag current-tags) (setq result-tags (push add-tag result-tags)))) @@ -955,7 +955,7 @@ currently present and return the result." (defun notmuch-show-del-tags-worker (current-tags del-tags) "Remove any tags in `del-tags' from `current-tags' and return the result." - (let ((result-tags (copy-seq current-tags))) + (let ((result-tags (copy-sequence current-tags))) (mapc (lambda (del-tag) (setq result-tags (delete del-tag result-tags))) del-tags)