Skip to content

Commit f1155e4

Browse files
committed
Merge pull request #1881 from mgreter/bugfix/issue_1839
Avoid wrong error due to misused map object in At_Rule
2 parents f55d187 + 77fa585 commit f1155e4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/output.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,8 @@ namespace Sass {
326326
}
327327
if (v) {
328328
append_mandatory_space();
329-
v->perform(this);
329+
// ruby sass bug? should use options?
330+
append_token(v->to_string(/* opt */), v);
330331
}
331332
if (!b) {
332333
append_delimiter();

0 commit comments

Comments
 (0)