diff options
author | jao <jao@gnu.org> | 2021-08-19 01:06:19 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2021-08-19 01:06:19 +0100 |
commit | 59664f4bc93864add8dd67ec5a64bda1cf73372b (patch) | |
tree | 90160f11edefd4dc367598ca984df54920339d07 /lib/net | |
parent | c660e50a71e98a63a49f51dccb967ced347d8f3d (diff) | |
download | elibs-59664f4bc93864add8dd67ec5a64bda1cf73372b.tar.gz elibs-59664f4bc93864add8dd67ec5a64bda1cf73372b.tar.bz2 |
fix: using pushnew correctly
Diffstat (limited to 'lib/net')
-rw-r--r-- | lib/net/jao-notmuch.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/net/jao-notmuch.el b/lib/net/jao-notmuch.el index e067714..261d8ce 100644 --- a/lib/net/jao-notmuch.el +++ b/lib/net/jao-notmuch.el @@ -154,7 +154,7 @@ (let ((pos (point))) (while (setq pos (next-single-property-change pos 'w3m-href-anchor)) (when-let ((url (get-text-property pos 'w3m-href-anchor))) - (cl-pushnew 'res url))) + (cl-pushnew url res))) res))) (defun jao-notmuch-browse-urls (&optional external) |