File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -519,7 +519,7 @@ namespace Sass {
519
519
}
520
520
}
521
521
if (String_Schema* s_r = dynamic_cast <String_Schema*>(b->right ())) {
522
- if (!s_r->is_left_interpolant () || op_type == Sass_OP::DIV) {
522
+ if (!s_r->has_interpolant () && (!s_r-> is_left_interpolant () || op_type == Sass_OP::DIV) ) {
523
523
ret_schema = SASS_MEMORY_NEW (ctx.mem , String_Schema, s_r->pstate ());
524
524
Binary_Expression* bin_ex = SASS_MEMORY_NEW (ctx.mem , Binary_Expression, b->pstate (),
525
525
b->op (), b->left (), s_r->first ());
@@ -691,7 +691,7 @@ namespace Sass {
691
691
}
692
692
}
693
693
694
- if (force_delay) {
694
+ if (force_delay) {
695
695
std::string str (" " );
696
696
str += v_l->to_string (ctx.c_options );
697
697
if (b->op ().ws_before ) str += " " ;
You can’t perform that action at this time.
0 commit comments