Skip to content

Commit

Permalink
Merge pull request sass#1477 from mgreter/bugfix/uri-variable-interpo…
Browse files Browse the repository at this point in the history
…lation

Remove `$` from `uri_chars` to enable interpolation
  • Loading branch information
xzyfer committed Aug 24, 2015
2 parents 2418479 + aee191c commit a448024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/constants.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,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 a448024

Please sign in to comment.