File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -1316,7 +1316,8 @@ namespace Sass {
1316
1316
if (ltype == Expression::NULL_VAL) error (" invalid null operation: \" null plus " +quote (unquote (rstr), ' "' )+" \" ." , lhs.pstate ());
1317
1317
if (rtype == Expression::NULL_VAL) error (" invalid null operation: \" " +quote (unquote (lstr), ' "' )+" plus null\" ." , rhs.pstate ());
1318
1318
1319
- String_Constant* str = ltype == Expression::STRING || sep == " "
1319
+ String_Constant* str = (ltype == Expression::STRING || sep == " " ) &&
1320
+ (sep != " /" || !rqstr || !rqstr->quote_mark ())
1320
1321
? SASS_MEMORY_NEW (mem, String_Quoted, lhs.pstate (), (lstr) + sep + (rstr))
1321
1322
: SASS_MEMORY_NEW (mem, String_Constant, lhs.pstate (), (lstr) + sep + quote (rstr));
1322
1323
str->quote_mark (0 );
You can’t perform that action at this time.
0 commit comments