summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBasil L. Contovounesios <contovob@tcd.ie>2019-03-27 13:56:22 +0000
committerBasil L. Contovounesios <contovob@tcd.ie>2019-03-27 13:56:22 +0000
commite50bfaaeaeda92955725a06da23feea7137dda44 (patch)
treeadf3afe1b581f5aedafbdb264afaa8da47b14646
parent041d65a0451cba6f67ba9c032ef5cc8eaa36e852 (diff)
downloademacs-e50bfaaeaeda92955725a06da23feea7137dda44.tar.gz
Avoid recently obsolete seq-contains in css-mode
* lisp/textmodes/css-mode.el (css--join-nested-selectors): Replace recently obsolete seq-contains with new predicate seq-contains-p.
-rw-r--r--lisp/textmodes/css-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el
index 57ecc9788eb..d3ca2d95589 100644
--- a/lisp/textmodes/css-mode.el
+++ b/lisp/textmodes/css-mode.el
@@ -1557,7 +1557,7 @@ rgb()/rgba()."
(prev nil))
(dolist (sel selectors)
(cond
- ((seq-contains sel ?&)
+ ((seq-contains-p sel ?&)
(setq sel (replace-regexp-in-string "&" prev sel))
(pop processed))
;; Unless this is the first selector, separate this one and the