diff options
Diffstat (limited to 'command.c')
-rw-r--r-- | command.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3038,7 +3038,7 @@ err: || c == ',' || c == '=') return *lexptr++; - if (c != '_' && ! is_alpha(c)) { + if (! is_letter(c)) { yyerror(_("invalid character")); return '\n'; } |