Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit 501e0b7

Browse files
author
Aaron Leung
committed
changing this variable name to lowercase
1 parent 0fa570e commit 501e0b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

prelexer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -492,14 +492,14 @@ namespace Sass {
492492
return std::isxdigit(*src) ? src+1 : 0;
493493
}
494494

495-
const char* UNICODE(const char* src) {
495+
const char* unicode(const char* src) {
496496
return sequence< exactly<'\\'>,
497497
between<H, 1, 6>,
498498
optional< class_char<url_space_chars> > >(src);
499499
}
500500

501501
const char* ESCAPE(const char* src) {
502-
return alternatives< UNICODE, class_char<escape_chars> >(src);
502+
return alternatives< unicode, class_char<escape_chars> >(src);
503503
}
504504

505505
const char* url(const char* src) {

0 commit comments

Comments
 (0)