diff options
| author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2024-06-24 22:11:31 +0900 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2024-06-24 15:38:11 +0000 |
| commit | e428ee7bbe07fd12f65e45be0839e7f0b1e4cda6 (patch) | |
| tree | 87988090d584b47e47c476e99cb86d864c08833d | |
| parent | f4f8aa0f890fd4642356741de21b0e3914c2c79b (diff) | |
[ruby/io-console] Use locale insensitive casecmp
https://github.com/ruby/io-console/commit/4b2e876dd7
| -rw-r--r-- | ext/io/console/console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/io/console/console.c b/ext/io/console/console.c index 2d27e1dc77..d88184ec9d 100644 --- a/ext/io/console/console.c +++ b/ext/io/console/console.c @@ -1073,7 +1073,7 @@ console_scroll(VALUE io, int line) #define GPERF_DOWNCASE 1 #define GPERF_CASE_STRCMP 1 -#define gperf_case_strcmp strcasecmp +#define gperf_case_strcmp STRCASECMP #include "win32_vk.inc" /* |
