Commit 25815f6b by Aaron Leung

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

parent 2ee9fce3
...@@ -84,8 +84,8 @@ namespace Sass { ...@@ -84,8 +84,8 @@ namespace Sass {
break; break;
case values: case values:
for (int i = 0; i < children.size(); ++i) { for (int i = 0; i < children.size(); ++i) {
buf << " "; buf << " " << string(children[i].token);
children[i].token.stream_unquoted(buf); // children[i].token.stream_unquoted(buf);
} }
break; break;
case rule: case rule:
......
...@@ -12,6 +12,7 @@ div { ...@@ -12,6 +12,7 @@ div {
a { a {
text-decoration: none; text-decoration: none;
color: green; color: green;
content: "▲";
border: 1px $blah red; border: 1px $blah red;
} }
/* yet another comment that should be preserved */ /* 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