Skip to content

Commit

Permalink
Merge pull request #1147 from mgreter/feature/issue_1146
Browse files Browse the repository at this point in the history
Allow more valid ascii chars for url parsing
  • Loading branch information
xzyfer committed Apr 30, 2015
2 parents d68baf0 + e88c4ce commit b943915
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion constants.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ namespace Sass {
extern const char arglist_name[] = "arglist";

// constants for uri parsing (RFC 3986 Appendix A.)
extern const char uri_chars[] = ":;/?!$%&#@[]{}'\"*+-.,_=";
extern const char uri_chars[] = ":;/?!$%&#@|[]{}'`^\"*+-.,_=~";

// some specific constant character classes
// they must be static to be useable by lexer
Expand Down

0 comments on commit b943915

Please sign in to comment.