Skip to content

Commit 3030315

Browse files
committed
Fix interpolation escape sequence edge case
Fixes #1168
1 parent 66631c0 commit 3030315

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

eval.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -901,9 +901,9 @@ namespace Sass {
901901
{
902902
string acc;
903903
for (size_t i = 0, L = s->length(); i < L; ++i) {
904-
if (String_Quoted* str_quoted = dynamic_cast<String_Quoted*>((*s)[i])) {
905-
if (!str_quoted->is_delayed()) str_quoted->value(string_eval_escapes(str_quoted->value()));
906-
}
904+
// if (String_Quoted* str_quoted = dynamic_cast<String_Quoted*>((*s)[i])) {
905+
// if (!str_quoted->is_delayed()) str_quoted->value(string_eval_escapes(str_quoted->value()));
906+
// }
907907
acc += interpolation((*s)[i]);
908908
}
909909
String_Quoted* str = new (ctx.mem) String_Quoted(s->pstate(), acc);

0 commit comments

Comments
 (0)