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 95011cd commit bf32633
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/parser.cpp
Expand Up @@ -2167,6 +2167,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 bf32633

Please sign in to comment.