Skip to content

Commit

Permalink
Merge pull request #362 from nsams/fix-sourcemaps
Browse files Browse the repository at this point in the history
fix source map generation
  • Loading branch information
Aaron Leung committed May 15, 2014
2 parents 85fbf54 + e231c6c commit 983aa9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eval.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ namespace Sass {
Expression* Eval::operator()(String_Schema* s)
{
string acc;
To_String to_string(&ctx);
To_String to_string(0);
for (size_t i = 0, L = s->length(); i < L; ++i) {
string chunk((*s)[i]->perform(this)->perform(&to_string));
if (((s->quote_mark() && is_quoted(chunk)) || !s->quote_mark()) && (*s)[i]->is_interpolant()) { // some redundancy in that test
Expand Down

0 comments on commit 983aa9e

Please sign in to comment.