Skip to content

Commit bb22723

Browse files
committed
Merge pull request sass#1066 from mgreter/bugfix/multiline-win-lf
Fix backslash multiline string with win linefeed
2 parents c878512 + a400011 commit bb22723

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

util.cpp

-1
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)