some more changes and fixes

This commit is contained in:
ceriel
1990-10-01 11:44:27 +00:00
parent 15e95081fd
commit 955353cb59
6 changed files with 43 additions and 9 deletions

View File

@@ -439,6 +439,10 @@ LLlex()
c = getc(db_in);
} while (c != EOF && class(c) == STSKIP);
if (c == EOF) return c;
if (extended_charset && in_ext(c)) {
TOK = get_name(c);
return TOK;
}
switch(class(c)) {
case STSTR:
TOK = (*currlang->get_string)(c);