@@ -180,8 +180,8 @@ C<< File::Glob >> has a function called C<< glob >>, which just calls
180
180
C<< bsd_glob >>.
181
181
182
182
C<< File::Glob::glob() >> was deprecated in Perl 5.8. A deprecation
183
- message was issued from Perl 5.26 onwards, and the function has now
184
- disappeared in Perl 5.30.
183
+ message was issued from Perl 5.26 onwards, the function became fatal
184
+ in Perl 5.30, and was removed entirely in Perl 5.32 .
185
185
186
186
Code using C<< File::Glob::glob() >> should call
187
187
C<< File::Glob::bsd_glob() >> instead.
@@ -192,7 +192,7 @@ C<< File::Glob::bsd_glob() >> instead.
192
192
193
193
Before Perl 5.10, setting C<< $* >> to a true value globally enabled
194
194
multi-line matching within a string. This relique from the past lost
195
- its special meaning in 5.10. Use of this variable will be a fatal error
195
+ its special meaning in 5.10. Use of this variable became a fatal error
196
196
in Perl 5.30, freeing the variable up for a future special meaning.
197
197
198
198
To enable multiline matching one should use the C<< /m >> regexp
@@ -205,7 +205,7 @@ a whole file) with C<< use re '/m' >>.
205
205
This variable used to have a special meaning -- it could be used
206
206
to control how numbers were formatted when printed. This seldom
207
207
used functionality was removed in Perl 5.10. In order to free up
208
- the variable for a future special meaning, its use will be a fatal
208
+ the variable for a future special meaning, its use became a fatal
209
209
error in Perl 5.30.
210
210
211
211
To specify how numbers are formatted when printed, one is advised
@@ -228,8 +228,8 @@ of C<< CORE::glob >>, and hence, C<< File::Glob::glob >> should not
228
228
be used.
229
229
230
230
C<< File::Glob::glob() >> was deprecated in Perl 5.8. A deprecation
231
- message was issued from Perl 5.26 onwards, and the function will
232
- disappear in Perl 5.30 .
231
+ message was issued from Perl 5.26 onwards, and in Perl 5.30 this was
232
+ turned into a fatal error .
233
233
234
234
Code using C<< File::Glob::glob() >> should call
235
235
C<< File::Glob::bsd_glob() >> instead.
@@ -241,7 +241,7 @@ See L</Unescaped left braces in regular expressions> above.
241
241
=head3 Unqualified C<dump()>
242
242
243
243
Use of C<dump()> instead of C<CORE::dump()> was deprecated in Perl 5.8,
244
- and an unqualified C<dump()> will no longer be available in Perl 5.30.
244
+ and an unqualified C<dump()> is no longer available as of Perl 5.30.
245
245
246
246
See L<perlfunc/dump>.
247
247
@@ -297,7 +297,7 @@ code. To avoid this a future version of perl will throw an exception when
297
297
any of sysread(), recv(), syswrite() or send() are called on handle with the
298
298
C<:utf8> layer.
299
299
300
- In Perl 5.30, it will no longer be possible to use sysread(), recv(),
300
+ As of Perl 5.30, it is no longer be possible to use sysread(), recv(),
301
301
syswrite() or send() to read or send bytes from/to :utf8 handles.
302
302
303
303
0 commit comments