Skip to content

Commit

Permalink
Fix handling of unclosed interpolant in url
Browse files Browse the repository at this point in the history
Fixes sass#2661
  • Loading branch information
xzyfer committed Jun 21, 2018
1 parent df8152d commit b3374e3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2163,6 +2163,7 @@ namespace Sass {
while (pp && peek< exactly< hash_lbrace > >(pp)) {
pp = sequence< interpolant, real_uri_value >(pp);
}
if (!pp) return 0;
position = pp;
return parse_interpolated_chunk(Token(p, position));
}
Expand Down

0 comments on commit b3374e3

Please sign in to comment.