ruby-changes:47580
From: kazu <ko1@a...>
Date: Thu, 31 Aug 2017 09:05:34 +0900 (JST)
Subject: [ruby-changes:47580] kazu:r59696 (trunk): `$=` is no longer effective. [ci skip]
kazu 2017-08-31 09:05:29 +0900 (Thu, 31 Aug 2017) New Revision: 59696 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=59696 Log: `$=` is no longer effective. [ci skip] * doc/globals.rdoc: [DOC] `$=` is no longer effective. Modified files: trunk/doc/globals.rdoc Index: doc/globals.rdoc =================================================================== --- doc/globals.rdoc (revision 59695) +++ doc/globals.rdoc (revision 59696) @@ -10,7 +10,7 @@ $':: The string to the right of the la https://github.com/ruby/ruby/blob/trunk/doc/globals.rdoc#L10 $+:: The highest group matched by the last successful match. $1:: The Nth group of the last successful match. May be > 1. $~:: The information about the last match in the current scope. -$=:: The flag for case insensitive, nil by default. +$=:: This variable is no longer effective. Deprecated. $/:: The input record separator, newline by default. $\:: The output record separator for the print and IO#write. Default is nil. $,:: The output field separator for the print and Array#join. -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/