eww: Fix cl- prefix missing in `delete-duplicates'

master
Pierre Neidhardt 2018-07-20 18:26:16 +02:00
parent 5ed2d56b7d
commit bcd27612ba
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ word(s) will be searched for via `eww-search-prefix'."
(replace-regexp-in-string "^https?" "" (plist-get bookmark :url)))
(user-error "Already bookmarked"))
(setq tag-list (append tag-list (plist-get bookmark :tags))))
(delete-duplicates tag-list)
(cl-delete-duplicates tag-list)
(let ((tags (completing-read-multiple "Tags for bookmark (comma separated): " tag-list))
(title (replace-regexp-in-string "[\n\t\r]" " "
(plist-get eww-data :title))))