summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2018-11-11 21:42:51 -0700
committerKarl Williamson <khw@cpan.org>2018-11-16 08:54:16 -0700
commitdafb254405696d9098a8d8452edea4ff150d3afb (patch)
tree30985f97a65935f89c0e9563fc24f63b9665ed43 /ext
parentb432b281adf94838a75c0c77faee5b236a1e8297 (diff)
downloadperl-dafb254405696d9098a8d8452edea4ff150d3afb.tar.gz
-Drv now turns on all regex debugging
This commit makes the v (verbose) modifier to -Dr do something: turn on all possible regex debugging.
Diffstat (limited to 'ext')
-rw-r--r--ext/re/re.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/ext/re/re.pm b/ext/re/re.pm
index 0b52e1d7d7..817b522c28 100644
--- a/ext/re/re.pm
+++ b/ext/re/re.pm
@@ -4,7 +4,7 @@ package re;
use strict;
use warnings;
-our $VERSION = "0.36";
+our $VERSION = "0.37";
our @ISA = qw(Exporter);
our @EXPORT_OK = ('regmust',
qw(is_regexp regexp_pattern
@@ -629,7 +629,9 @@ These are useful shortcuts to save on the typing.
=item ALL
Enable all options at once except OFFSETS, OFFSETSDBG and BUFFERS.
-(To get every single option without exception, use both ALL and EXTRA.)
+(To get every single option without exception, use both ALL and EXTRA, or
+starting in 5.30 on a C<-DDEBUGGING>-enabled perl interpreter, use
+the B<-Drv> command-line switches.)
=item All