File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,7 @@ namespace Sass {
143
143
}
144
144
else {
145
145
lex< css_whitespace >();
146
+ before_token = after_token;
146
147
if (position >= end) break ;
147
148
error (" invalid top-level expression" , pstate);
148
149
}
Original file line number Diff line number Diff line change @@ -62,13 +62,14 @@ namespace Sass {
62
62
return line_comment (src);
63
63
}
64
64
65
+ /* not used anymore - remove?
65
66
const char* wspaces(const char* src) {
66
67
return
67
68
alternatives<
68
69
exactly<' '>,
69
70
exactly<'\t'>
70
71
>(src);
71
- }
72
+ }*/
72
73
73
74
/* not used anymore - remove?
74
75
const char* newline(const char* src) {
Original file line number Diff line number Diff line change @@ -261,7 +261,7 @@ namespace Sass {
261
261
const char * alnums (const char * src);
262
262
const char * puncts (const char * src);
263
263
// Match certain white-space charactes.
264
- const char * wspaces (const char * src);
264
+ // const char* wspaces(const char* src);
265
265
// const char* newline(const char* src);
266
266
// const char* whitespace(const char* src);
267
267
You can’t perform that action at this time.
0 commit comments