diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-07-11 08:17:52 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-07-11 08:17:52 +0300 |
commit | 848eeca1caa9221b3b9cc3bc7678787040a03657 (patch) | |
tree | b5ef4127d12e48277def02ced2e208d9a8ba1ae3 /command.c | |
parent | 02a9d7c4e6d029a0dc0069aa6d68a09c007794aa (diff) | |
parent | 9e419cfbc401e9b9fd45c8e854fdf5ae799261d5 (diff) | |
download | egawk-848eeca1caa9221b3b9cc3bc7678787040a03657.tar.gz egawk-848eeca1caa9221b3b9cc3bc7678787040a03657.tar.bz2 egawk-848eeca1caa9221b3b9cc3bc7678787040a03657.zip |
Merge branch 'master' into feature/api-mpfr
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'; } |