diff options
author | Edoardo Sanguineti <edoardo.sanguineti222@gmail.com> | 2022-11-04 11:50:32 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2022-11-04 11:53:52 -0700 |
commit | 97852f39f42a28abfcaf1c46b1f06920eae151c9 (patch) | |
tree | 984ad8dfe7c82cd76bcc8d44305a035e36963768 /src/parse-gram.c | |
parent | 25b3d0e1a3f97a33615099e4b211f3953990c203 (diff) | |
download | bison-master.tar.gz |
* src/parse-gram.y, src/scan-gram.l: Do not cast c-ctype.h function
args to unsigned char unnecessarily.
* src/parse-gram.c: Regenerate.
Copyright-paperwork-exempt: yes
Diffstat (limited to 'src/parse-gram.c')
-rw-r--r-- | src/parse-gram.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parse-gram.c b/src/parse-gram.c index b6ac083e..97fbb925 100644 --- a/src/parse-gram.c +++ b/src/parse-gram.c @@ -2945,11 +2945,11 @@ add_param (param_type type, char *decl, location loc) /* Strip the surrounding '{' and '}', and any blanks just inside the braces. */ --p; - while (c_isspace ((unsigned char) *p)) + while (c_isspace (*p)) --p; p[1] = '\0'; ++decl; - while (c_isspace ((unsigned char) *decl)) + while (c_isspace (*decl)) ++decl; } |