diff options
-rw-r--r-- | lisp/vc/ediff-util.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/vc/ediff-util.el b/lisp/vc/ediff-util.el index a6f96b6e840..74c6aba1e47 100644 --- a/lisp/vc/ediff-util.el +++ b/lisp/vc/ediff-util.el @@ -4137,6 +4137,7 @@ Mail anyway? (y or n) ") ;; this uses comparison-func to decide who is a member (defun ediff-member (elt lis comparison-func) + (declare (obsolete seq-contains-p "28.1")) (while (and lis (not (funcall comparison-func (car lis) elt))) (setq lis (cdr lis))) lis) |