aboutsummaryrefslogtreecommitdiffstats
path: root/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'command.c')
-rw-r--r--command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/command.c b/command.c
index 1d804c75..31f356da 100644
--- a/command.c
+++ b/command.c
@@ -3038,7 +3038,7 @@ err:
|| c == ',' || c == '=')
return *lexptr++;
- if (c != '_' && ! is_alpha(c)) {
+ if (! is_letter(c)) {
yyerror(_("invalid character"));
return '\n';
}