Skip to content

Commit

Permalink
Fix name parsing with escape sequences
Browse files Browse the repository at this point in the history
Fixes sass#1977
  • Loading branch information
mgreter committed Apr 5, 2016
1 parent 140959c commit 2a28ccf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/prelexer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ namespace Sass {
return one_plus< alternatives< alnum,
exactly<'-'>,
exactly<'_'>,
exactly<'\\'> > >(src);
escape_seq > >(src);
}

const char* kwd_warn(const char* src) {
Expand Down

0 comments on commit 2a28ccf

Please sign in to comment.