mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
emacs/address: use member instead of memq to check for pair
Quoting from the elisp reference: For other types (e.g., lists, vectors, strings), two arguments with the same contents or elements are not necessarily ‘eq’ to each other. Thanks to "Attic Hermit" for the fix.
This commit is contained in:
parent
227ecf4949
commit
ff6d3b6489
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ matching `notmuch-address-completion-headers-regexp'.
|
|||
#'notmuch-address-expand-name)))
|
||||
(when setup-company
|
||||
(notmuch-company-setup))
|
||||
(unless (memq pair message-completion-alist)
|
||||
(unless (member pair message-completion-alist)
|
||||
(setq message-completion-alist
|
||||
(push pair message-completion-alist)))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue