Skip to content

Commit 83fbbcf

Browse files
committed
change list parsing precedence
1 parent f66a0e5 commit 83fbbcf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scss.inc.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2904,11 +2904,11 @@ protected function argValue(&$out) {
29042904

29052905

29062906
protected function valueList(&$out) {
2907-
return $this->genericList($out, "commaList");
2907+
return $this->genericList($out, "spaceList", ",");
29082908
}
29092909

2910-
protected function commaList(&$out) {
2911-
return $this->genericList($out, "expression", ",");
2910+
protected function spaceList(&$out) {
2911+
return $this->genericList($out, "expression");
29122912
}
29132913

29142914
protected function genericList(&$out, $parseItem, $delim="", $flatten=true) {

0 commit comments

Comments
 (0)