We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 77c928f + a969403 commit 42e22fbCopy full SHA for 42e22fb
src/bind.cpp
@@ -125,7 +125,7 @@ namespace Sass {
125
// maybe we have another list as argument
126
List* ls = dynamic_cast<List*>(a->value());
127
// skip any list completely if empty
128
- if (ls && ls->empty()) continue;
+ if (ls && ls->empty() && a->is_rest_argument()) continue;
129
// flatten all nested arglists
130
if (ls && ls->is_arglist()) {
131
for (size_t i = 0, L = ls->size(); i < L; ++i) {
0 commit comments