aboutsummaryrefslogtreecommitdiffstats
path: root/command.y
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-07-11 08:18:11 +0300
committerArnold D. Robbins <arnold@skeeve.com>2017-07-11 08:18:11 +0300
commit4dfba438f210317f2d85516d33faa208e70e4d5c (patch)
tree9e749a539609e5becd41c818573d4a861700e651 /command.y
parent1d8243e10c9e2462adcd72ca34702d33bd896d32 (diff)
parent9e419cfbc401e9b9fd45c8e854fdf5ae799261d5 (diff)
downloadegawk-4dfba438f210317f2d85516d33faa208e70e4d5c.tar.gz
egawk-4dfba438f210317f2d85516d33faa208e70e4d5c.tar.bz2
egawk-4dfba438f210317f2d85516d33faa208e70e4d5c.zip
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'command.y')
-rw-r--r--command.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/command.y b/command.y
index 65d21853..0080c9b2 100644
--- a/command.y
+++ b/command.y
@@ -3,7 +3,7 @@
*/
/*
- * Copyright (C) 2004, 2010, 2011, 2014, 2016
+ * Copyright (C) 2004, 2010, 2011, 2014, 2016, 2017
* the Free Software Foundation, Inc.
*
* This file is part of GAWK, the GNU implementation of the
@@ -1288,7 +1288,7 @@ err:
|| c == ',' || c == '=')
return *lexptr++;
- if (c != '_' && ! is_alpha(c)) {
+ if (! is_letter(c)) {
yyerror(_("invalid character"));
return '\n';
}