Skip to content

Commit 6f77335

Browse files
committed
Fix issue when passing restargs to call
1 parent 25c9b49 commit 6f77335

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bind.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ namespace Sass {
138138
arglist->separator(rest->separator());
139139

140140
for (size_t i = 0, L = rest->length(); i < L; ++i) {
141-
Expression_Obj obj = rest->at(i);
141+
Expression_Obj obj = rest->value_at_index(i);
142142
arglist->append(SASS_MEMORY_NEW(Argument,
143143
obj->pstate(),
144144
obj,

0 commit comments

Comments
 (0)