aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBasil L. Contovounesios2019-03-27 13:56:22 +0000
committerBasil L. Contovounesios2019-03-27 13:56:22 +0000
commite50bfaaeaeda92955725a06da23feea7137dda44 (patch)
treeadf3afe1b581f5aedafbdb264afaa8da47b14646
parent041d65a0451cba6f67ba9c032ef5cc8eaa36e852 (diff)
downloademacs-e50bfaaeaeda92955725a06da23feea7137dda44.tar.gz
emacs-e50bfaaeaeda92955725a06da23feea7137dda44.zip
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()."
1557 (prev nil)) 1557 (prev nil))
1558 (dolist (sel selectors) 1558 (dolist (sel selectors)
1559 (cond 1559 (cond
1560 ((seq-contains sel ?&) 1560 ((seq-contains-p sel ?&)
1561 (setq sel (replace-regexp-in-string "&" prev sel)) 1561 (setq sel (replace-regexp-in-string "&" prev sel))
1562 (pop processed)) 1562 (pop processed))
1563 ;; Unless this is the first selector, separate this one and the 1563 ;; Unless this is the first selector, separate this one and the