Function: consult--remove-dups
consult--remove-dups is a byte-compiled function defined in
consult.el.
Signature
(consult--remove-dups LIST)
Documentation
Remove duplicate strings from LIST.
Source Code
;; Defined in ~/.emacs.d/elpa/consult-20260805.1130/consult.el
(defun consult--remove-dups (list)
"Remove duplicate strings from LIST."
(delete-dups (copy-sequence list)))