Skip to content

Commit a448024

Browse files
committed
Merge pull request #1477 from mgreter/bugfix/uri-variable-interpolation
Remove `$` from `uri_chars` to enable interpolation
2 parents 2418479 + aee191c commit a448024

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/constants.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ namespace Sass {
140140
extern const char arglist_name[] = "arglist";
141141

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

145145
// some specific constant character classes
146146
// they must be static to be useable by lexer

0 commit comments

Comments
 (0)