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.
This commit is contained in:
parent
041d65a045
commit
e50bfaaeae
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue