diff options
Diffstat (limited to 'lib/c-ctype.h')
| -rw-r--r-- | lib/c-ctype.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/c-ctype.h b/lib/c-ctype.h index faf21581ca0..bcdba6b9962 100644 --- a/lib/c-ctype.h +++ b/lib/c-ctype.h | |||
| @@ -115,16 +115,16 @@ extern "C" { | |||
| 115 | 115 | ||
| 116 | /* Cases for lowercase hex letters, and lowercase letters, all offset by N. */ | 116 | /* Cases for lowercase hex letters, and lowercase letters, all offset by N. */ |
| 117 | 117 | ||
| 118 | #define _C_CTYPE_LOWER_A_THRU_F_N(n) \ | 118 | #define _C_CTYPE_LOWER_A_THRU_F_N(N) \ |
| 119 | case 'a' + (n): case 'b' + (n): case 'c' + (n): case 'd' + (n): \ | 119 | case 'a' + (N): case 'b' + (N): case 'c' + (N): case 'd' + (N): \ |
| 120 | case 'e' + (n): case 'f' + (n) | 120 | case 'e' + (N): case 'f' + (N) |
| 121 | #define _C_CTYPE_LOWER_N(n) \ | 121 | #define _C_CTYPE_LOWER_N(N) \ |
| 122 | _C_CTYPE_LOWER_A_THRU_F_N(n): \ | 122 | _C_CTYPE_LOWER_A_THRU_F_N(N): \ |
| 123 | case 'g' + (n): case 'h' + (n): case 'i' + (n): case 'j' + (n): \ | 123 | case 'g' + (N): case 'h' + (N): case 'i' + (N): case 'j' + (N): \ |
| 124 | case 'k' + (n): case 'l' + (n): case 'm' + (n): case 'n' + (n): \ | 124 | case 'k' + (N): case 'l' + (N): case 'm' + (N): case 'n' + (N): \ |
| 125 | case 'o' + (n): case 'p' + (n): case 'q' + (n): case 'r' + (n): \ | 125 | case 'o' + (N): case 'p' + (N): case 'q' + (N): case 'r' + (N): \ |
| 126 | case 's' + (n): case 't' + (n): case 'u' + (n): case 'v' + (n): \ | 126 | case 's' + (N): case 't' + (N): case 'u' + (N): case 'v' + (N): \ |
| 127 | case 'w' + (n): case 'x' + (n): case 'y' + (n): case 'z' + (n) | 127 | case 'w' + (N): case 'x' + (N): case 'y' + (N): case 'z' + (N) |
| 128 | 128 | ||
| 129 | /* Cases for hex letters, digits, lower, punct, and upper. */ | 129 | /* Cases for hex letters, digits, lower, punct, and upper. */ |
| 130 | 130 | ||