Skip to content

Commit

Permalink
Fix handling of unclosed interpolant in url
Browse files Browse the repository at this point in the history
Fixes #2661
  • Loading branch information
xzyfer committed Jul 3, 2018
1 parent 210fdff commit c0a6cf3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/parser.cpp
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 c0a6cf3

Please sign in to comment.