Commit 25815f6b by Aaron Leung

Whoops, shouldn't have been unquoting strings stored in variables.

parent 2ee9fce3
......@@ -84,8 +84,8 @@ namespace Sass {
break;
case values:
for (int i = 0; i < children.size(); ++i) {
buf << " ";
children[i].token.stream_unquoted(buf);
buf << " " << string(children[i].token);
// children[i].token.stream_unquoted(buf);
}
break;
case rule:
......
......@@ -12,6 +12,7 @@ div {
a {
text-decoration: none;
color: green;
content: "▲";
border: 1px $blah red;
}
/* yet another comment that should be preserved */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment