Skip to content

Commit

Permalink
foo
Browse files Browse the repository at this point in the history
  • Loading branch information
xzyfer committed Oct 13, 2015
1 parent 6226abe commit 937e459
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/prelexer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ namespace Sass {
> >(src);
}

const char* UNICODE(const char* src) {
const char* UUNICODE(const char* src) {
return sequence< exactly<'\\'>,
between<H, 1, 6>,
optional< W >
Expand All @@ -941,7 +941,7 @@ namespace Sass {

const char* ESCAPE(const char* src) {
return alternatives<
UNICODE,
UUNICODE,
sequence<
exactly<'\\'>,
NONASCII,
Expand Down
2 changes: 1 addition & 1 deletion src/prelexer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ namespace Sass {
// match url()
const char* H(const char* src);
const char* W(const char* src);
const char* UNICODE(const char* src);
const char* UUNICODE(const char* src);
const char* NONASCII(const char* src);
const char* ESCAPE(const char* src);
const char* real_uri_suffix(const char* src);
Expand Down

0 comments on commit 937e459

Please sign in to comment.