Fix tokenizer not ignoring newlines...

...at the end of inlined preprocessor directives when textdomains are
used in the middle of concatenated WML strings.
This commit is contained in:
Guillaume Melquiond 2005-07-12 20:03:18 +00:00
parent 8e0b2a0a82
commit 8b740bd476

View File

@ -93,6 +93,7 @@ const token& tokenizer::next_token()
next_char();
if (current_ == 254) {
skip_comment();
--lineno_;
continue;
}