diff options
author | Nobuyoshi Nakada <[email protected]> | 2023-11-06 17:29:03 +0900 |
---|---|---|
committer | git <[email protected]> | 2023-11-07 00:41:15 +0000 |
commit | 07df8a5d5ee725eee00632717ea4deead5fc783b (patch) | |
tree | dd9b93ce99da9ff98ff049f993eb320156265d3a /lib/English.rb | |
parent | 49b6dc8f07ec6baafa0881d8cb14029a66a04621 (diff) |
[ruby/English] Remove `$IGNORECASE`
`$=` has been obsolete and has no effect since 1.9.
https://github.com/ruby/English/commit/121939695a
Diffstat (limited to 'lib/English.rb')
-rw-r--r-- | lib/English.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/English.rb b/lib/English.rb index da50dfdc29..21acc38944 100644 --- a/lib/English.rb +++ b/lib/English.rb @@ -39,7 +39,6 @@ # $PROCESS_ID:: $$ # $CHILD_STATUS:: $? # $LAST_MATCH_INFO:: $~ -# $IGNORECASE:: $= # $ARGV:: $* # $MATCH:: $& # $PREMATCH:: $` @@ -151,9 +150,6 @@ alias $CHILD_STATUS $? # scope. alias $LAST_MATCH_INFO $~ -# This variable is no longer effective. Deprecated. -alias $IGNORECASE $= - # An array of strings containing the command-line # options from the invocation of the program. Options # used by the Ruby interpreter will have been |