You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 24, 2024. It is now read-only.
"See http://bit.ly/ExtendCompound for details.\n";
"See http://bit.ly/ExtendCompound for details.\n";
690
688
691
-
// Pass every selector we ever see to extender (to make them findable for extend)
692
-
ctx.extender.addExtension(selector(), compound->first(), e, mediaStack.back());
689
+
// Make this an error once deprecation is over
690
+
for (SimpleSelectorObj simple : compound->elements()) {
691
+
// Pass every selector we ever see to extender (to make them findable for extend)
692
+
ctx.extender.addExtension(selector(), simple, e, mediaStack.back());
693
+
}
693
694
694
-
}
695
-
else {
696
-
std::cerr << "complex selectors may not be extended." << "\n"; exit(1);
695
+
}
696
+
else {
697
+
// Pass every selector we ever see to extender (to make them findable for extend)
698
+
ctx.extender.addExtension(selector(), compound->first(), e, mediaStack.back());
699
+
}
700
+
701
+
}
702
+
else {
703
+
error("complex selectors may not be extended.", complex->pstate(), traces);
0 commit comments