Function: hfy-interq
hfy-interq is a byte-compiled function defined in htmlfontify.el.gz.
This function is obsolete since 28.1; use seq-intersection instead.
Signature
(hfy-interq SET-A SET-B)
Documentation
Return the intersection (using eq) of two lists SET-A and SET-B.
Source Code
;; Defined in /usr/src/emacs/lisp/htmlfontify.el.gz
(defun hfy-interq (set-a set-b)
"Return the intersection (using `eq') of two lists SET-A and SET-B."
(declare (obsolete seq-intersection "28.1"))
(nreverse (seq-intersection set-a set-b #'eq)))