* src/options.c (option_table): Adjust.

* src/lex.c (parse_percent_token): Fix.
This commit is contained in:
Marc Autret
2001-09-21 15:42:26 +00:00
parent 31b53af2fa
commit 6bc35ae56a
3 changed files with 11 additions and 6 deletions

View File

@@ -569,8 +569,8 @@ parse_percent_token (void)
obstack_1grow (&token_obstack, '%');
while (isalpha (c) || c == '_' || c == '-')
{
if (c == '-')
c = '_';
if (c == '_')
c = '-';
obstack_1grow (&token_obstack, c);
c = getc (finput);
}