Commit adf590f7 by Aaron Leung

Corrected the whitespace handling when consuming a block comment.

parent d8419f01
......@@ -22,7 +22,8 @@ namespace Sass {
bool try_munching() {
char* after_whitespace;
if (mx == block_comment) {
after_whitespace = optional_spaces(position);
after_whitespace =
zero_plus< alternatives<spaces, line_comment> >(position);
}
else if (mx == spaces || mx == ancestor_of) {
after_whitespace = spaces(position);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment