Commit 24687882 by Aaron Leung

Fixing the concatenated string emitter.

parent f377899e
......@@ -327,7 +327,7 @@ namespace Sass {
case concatenation: {
string result;
for (size_t i = 0, S = size(); i < S; ++i) {
result += at(i).token().unquote();
result += at(i).to_string().substr(1, at(i).token().length()-2);
}
return "\"" + result + "\"";
} break;
......
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