Skip to content

Commit 2b4b3bf

Browse files
committed
Fix unquote function not unquoting variables
1 parent 73979ff commit 2b4b3bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

functions.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@ namespace Sass {
771771
return result;
772772
}
773773
To_String to_string(&ctx);
774-
return new (ctx.mem) String_Constant(pstate, string(arg->perform(&to_string)));
774+
return new (ctx.mem) String_Constant(pstate, unquote(string(arg->perform(&to_string))));
775775
}
776776

777777
Signature quote_sig = "quote($string)";

0 commit comments

Comments
 (0)