Skip to content

Commit a400011

Browse files
committed
Fix backslash multiline string with win linefeed
1 parent f82a41b commit a400011

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

util.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ namespace Sass {
8888
if (i == '\\') {
8989
esc = ! esc;
9090
} else if (esc && i == '\r') {
91-
out.resize (out.size () - 1);
9291
continue;
9392
} else if (esc && i == '\n') {
9493
out.resize (out.size () - 1);

0 commit comments

Comments
 (0)