We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23f23ee commit a487400Copy full SHA for a487400
src/eval.cpp
@@ -1176,7 +1176,6 @@ namespace Sass {
1176
std::string res("");
1177
for (size_t i = 0; i < L; ++i) {
1178
bool is_quoted = dynamic_cast<String_Quoted*>((*s)[i]) != NULL;
1179
- (*s)[i]->perform(this);
1180
if (was_quoted && !(*s)[i]->is_interpolant() && !was_interpolant) { res += " "; }
1181
else if (i > 0 && is_quoted && !(*s)[i]->is_interpolant() && !was_interpolant) { res += " "; }
1182
Expression* ex = (*s)[i]->is_delayed() ? (*s)[i] : (*s)[i]->perform(this);
0 commit comments