diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2014-11-19 18:22:45 +0100 |
---|---|---|
committer | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2014-11-19 18:22:45 +0100 |
commit | a8995cae4c5daecee3fb2ee8dc2348eedc340af1 (patch) | |
tree | aa6a19cacf7833bd37254d9716b714bef7a7c43e /lisp/net/eww.el | |
parent | 7d77dc18c7a3040fc565680bc1e2785f6db2c09f (diff) | |
download | emacs-a8995cae4c5daecee3fb2ee8dc2348eedc340af1.tar.gz emacs-a8995cae4c5daecee3fb2ee8dc2348eedc340af1.tar.bz2 emacs-a8995cae4c5daecee3fb2ee8dc2348eedc340af1.zip |
* net/eww.el (eww-desktop-misc-data): Use `cl-remove-duplicates'.
Diffstat (limited to 'lisp/net/eww.el')
-rw-r--r-- | lisp/net/eww.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/eww.el b/lisp/net/eww.el index dd449ff5e47..76e14be4d79 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el @@ -1597,7 +1597,7 @@ Generally, the list should not include the (usually overly large) (let ((history (mapcar 'eww-desktop-data-1 (cons eww-data eww-history)))) (list :history (if eww-desktop-remove-duplicates - (remove-duplicates + (cl-remove-duplicates history :test 'eww-desktop-history-duplicate) history)))) |