This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perl5.git
13 years agoDelete perldiag/Use of "package" with no arguments
Father Chrysostomos [Mon, 14 Feb 2011 22:58:47 +0000 (14:58 -0800)]
Delete perldiag/Use of "package" with no arguments

Use of package without arguments is so deprecated that this message
does not even show up any more.

13 years agoperldiag: more sorting
Father Chrysostomos [Mon, 14 Feb 2011 22:58:31 +0000 (14:58 -0800)]
perldiag: more sorting

13 years agoperldiag: reflow ‘Use of inherited AUTOLOAD’
Father Chrysostomos [Mon, 14 Feb 2011 22:55:13 +0000 (14:55 -0800)]
perldiag: reflow ‘Use of inherited AUTOLOAD’

diagnostics.pm does not like POD formatting directives spanning
multiple lines.

13 years agoperldiag: more sorting
Father Chrysostomos [Mon, 14 Feb 2011 22:49:16 +0000 (14:49 -0800)]
perldiag: more sorting

13 years agoperldiag: Fix some weird errors
Father Chrysostomos [Mon, 14 Feb 2011 22:40:52 +0000 (14:40 -0800)]
perldiag: Fix some weird errors

The word ‘first’ was separated from the rest of the sentence by commit
e2e6a0f18.

Just loading a module is enough to load it. It does not also need to
be imported.

Plus reflow.

13 years agoperldiag: Expand the ‘Unknown switch condition’ description
Father Chrysostomos [Mon, 14 Feb 2011 22:33:43 +0000 (14:33 -0800)]
perldiag: Expand the ‘Unknown switch condition’ description

Actually, I’m abbreviating much of the existing text, but there are so
many possible conditions now it seems like a good idea.

13 years agoperlre: Clarify (?(...)|)
Father Chrysostomos [Mon, 14 Feb 2011 22:19:58 +0000 (14:19 -0800)]
perlre: Clarify (?(...)|)

• Mention look-around assertions in the list
• It’s the code block’s return value, not the block itself
  that is used

13 years agoperldiag: more sorting
Father Chrysostomos [Mon, 14 Feb 2011 21:23:33 +0000 (13:23 -0800)]
perldiag: more sorting

13 years agoAdd dist.ini as an IGNORABLE to Maintainers.pl
Chris 'BinGOs' Williams [Mon, 14 Feb 2011 23:29:07 +0000 (23:29 +0000)]
Add dist.ini as an IGNORABLE to Maintainers.pl

13 years agoPorting/release_managers_guide.pod: make bump-perl-version example runnable
Ævar Arnfjörð Bjarmason [Mon, 14 Feb 2011 23:13:34 +0000 (23:13 +0000)]
Porting/release_managers_guide.pod: make bump-perl-version example runnable

Porting/bump-perl-version isn't executable so this example didn't work
as-is. Make it use `./perl -Ilib ..` like the other examples instead.

13 years agoSubject: optimize matching -g still enables -DDEBUGING
H.Merijn Brand [Mon, 14 Feb 2011 22:01:37 +0000 (23:01 +0100)]
Subject: optimize matching -g still enables -DDEBUGING
From: Nicholas Clark <nick@ccl4.org>
Date: Mon, 14 Feb 2011 16:01:49 +0000
Message-ID: <20110214160149.GU24189@plum.flirble.org>

INSTALL says this:

    =item -DEBUGGING=-g

    =item -Doptimize=-g

    Adds -g to optimize, but does not set -DDEBUGGING.

    (Note:  Your system may actually require something like cc -g2.
    Check your man pages for cc(1) and also any hint file for your system.)

However, we *aren't* compliant with our documentation, as currently
-Doptimize=-g (or anything containing -g) still causes -DDEBUGGING to be
added to the C flags.

Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
13 years agoPorting/git-deltatool: add `--mode summary --type blocking` example
Ævar Arnfjörð Bjarmason [Mon, 14 Feb 2011 21:45:59 +0000 (21:45 +0000)]
Porting/git-deltatool: add `--mode summary --type blocking` example

Add an example of `git-deltatool --mode summary --type blocking`
usage. It's what you use for getting the list of commits that you
marked as needing help with.

13 years agoPorting/git-deltatool: s/summarize/summary/ in documentation
Ævar Arnfjörð Bjarmason [Mon, 14 Feb 2011 21:43:58 +0000 (21:43 +0000)]
Porting/git-deltatool: s/summarize/summary/ in documentation

Change the "summarize" misrefences to the "summary" option to
"summary".

13 years agoFix symbol table associations in VMS::DCLsym
Charles Bailey [Sun, 13 Feb 2011 18:16:56 +0000 (13:16 -0500)]
Fix symbol table associations in VMS::DCLsym

13 years agoDecrease (unbump?) re.pm’s version
Father Chrysostomos [Mon, 14 Feb 2011 17:59:50 +0000 (09:59 -0800)]
Decrease (unbump?) re.pm’s version

b4ab316d increased it unnecessarily, as it had already been increased
since 5.13.9 (by ffedb8c).

13 years agoperldiag: add OK to %s syntax
Father Chrysostomos [Mon, 14 Feb 2011 17:59:11 +0000 (09:59 -0800)]
perldiag: add OK to %s syntax

13 years agoperldiag: reflow for 80 cols.
Father Chrysostomos [Mon, 14 Feb 2011 17:54:25 +0000 (09:54 -0800)]
perldiag: reflow for 80 cols.

13 years agoperldiag: typo
Father Chrysostomos [Mon, 14 Feb 2011 17:52:24 +0000 (09:52 -0800)]
perldiag: typo

13 years agoexporting a static function doesnt work
Karl Williamson [Mon, 14 Feb 2011 17:51:30 +0000 (10:51 -0700)]
exporting a static function doesnt work

13 years agoIn make_ext.pl, on Win32 avoid calling getcwd() twice in quick succession.
Nicholas Clark [Mon, 14 Feb 2011 09:41:32 +0000 (09:41 +0000)]
In make_ext.pl, on Win32 avoid calling getcwd() twice in quick succession.

13 years agofold_grind.t: Test multi-char folds
Karl Williamson [Mon, 14 Feb 2011 15:44:12 +0000 (08:44 -0700)]
fold_grind.t: Test multi-char folds

13 years agoAdd /aa regex modifier
Karl Williamson [Mon, 14 Feb 2011 15:12:10 +0000 (08:12 -0700)]
Add /aa regex modifier

Tests for \N{} with this option will be added later.

13 years agofold_grind.t: Fix comments
Karl Williamson [Mon, 14 Feb 2011 15:08:48 +0000 (08:08 -0700)]
fold_grind.t: Fix comments

13 years agofold_grind.t: use common subroutine
Karl Williamson [Mon, 14 Feb 2011 04:02:02 +0000 (21:02 -0700)]
fold_grind.t: use common subroutine

13 years agofold_grind.t: comment fixes
Karl Williamson [Mon, 14 Feb 2011 03:56:42 +0000 (20:56 -0700)]
fold_grind.t: comment fixes

13 years agofold_grind.t: white space only
Karl Williamson [Mon, 14 Feb 2011 03:53:36 +0000 (20:53 -0700)]
fold_grind.t: white space only

13 years agoregexec.c: Handle sharp s in middle of backref
Karl Williamson [Sun, 13 Feb 2011 03:28:17 +0000 (20:28 -0700)]
regexec.c: Handle sharp s in middle of backref

This code handled some of the case of the LATIN SMALL LETTER SHARP S at
the beginning of a back ref, but not in the middle.  To do it easily,
just call the function that handles our full Unicode folding

13 years agoregexec.c: Remove no longer used code
Karl Williamson [Sun, 13 Feb 2011 03:26:08 +0000 (20:26 -0700)]
regexec.c: Remove no longer used code

A recent commit #ifdef'd this out

13 years agoregexec.c: Convert to foldEQ_utf8_flags()
Karl Williamson [Sun, 13 Feb 2011 03:11:45 +0000 (20:11 -0700)]
regexec.c: Convert to foldEQ_utf8_flags()

13 years agoregexec.c: Rmv unused macro
Karl Williamson [Sun, 13 Feb 2011 03:01:26 +0000 (20:01 -0700)]
regexec.c: Rmv unused macro

A recent commit stopped calling this

13 years agochange comment
Karl Williamson [Sun, 13 Feb 2011 03:00:51 +0000 (20:00 -0700)]
change comment

13 years agoregexec.c: refactor find-by-class EXACTish code
Karl Williamson [Sun, 13 Feb 2011 02:23:34 +0000 (19:23 -0700)]
regexec.c: refactor find-by-class EXACTish code

This code is way out-of-date, using upper and lower case instead of fold-case.

13 years agofoldEQ_utf8_flags: Add no-mixing ASCII option
Karl Williamson [Thu, 10 Feb 2011 04:41:34 +0000 (21:41 -0700)]
foldEQ_utf8_flags: Add no-mixing ASCII option

If this option is set, any match that has a non-ASCII character that has
an ASCII character in its fold will not match that fold.

13 years agore.pm: Add /aa support
Karl Williamson [Fri, 11 Feb 2011 17:22:53 +0000 (10:22 -0700)]
re.pm: Add /aa support

13 years agore.pm: Forbid things like /dd, /uu
Karl Williamson [Fri, 11 Feb 2011 16:46:29 +0000 (09:46 -0700)]
re.pm: Forbid things like /dd, /uu

This is so they can perhaps be used in the future by Perl.

The test file is refactored to test these more comprehensively, adding tests
for the recently added /a.

13 years agofoldEQ_utf8: Add version with flags parameter
Karl Williamson [Thu, 10 Feb 2011 04:30:13 +0000 (21:30 -0700)]
foldEQ_utf8: Add version with flags parameter

The parameter doesn't do anything yet.  The old version becomes a macro
calling the new version with 0 as the flags.

13 years agoregcomp.sym: Add nodes for backref of EXACTFA
Karl Williamson [Wed, 9 Feb 2011 23:47:32 +0000 (16:47 -0700)]
regcomp.sym: Add nodes for backref of EXACTFA

These are not used yet.

13 years agoregcomp.sym: Add regnode for /aa matching
Karl Williamson [Thu, 3 Feb 2011 15:37:43 +0000 (08:37 -0700)]
regcomp.sym: Add regnode for /aa matching

It is not used yet.

13 years agoregexec.c: Fix comment
Karl Williamson [Sat, 5 Feb 2011 17:48:15 +0000 (10:48 -0700)]
regexec.c: Fix comment

13 years agoregexec.c: Rmv wrong comment
Karl Williamson [Thu, 3 Feb 2011 15:31:20 +0000 (08:31 -0700)]
regexec.c: Rmv wrong comment

13 years agoInitial setup to accommodate /aa regex modifier
Karl Williamson [Thu, 3 Feb 2011 00:48:56 +0000 (17:48 -0700)]
Initial setup to accommodate /aa regex modifier

This changes the bits to add a new charset type for /aa, and other bookkeeping
for it.

13 years agoregcomp.c: Add cast.
Karl Williamson [Thu, 10 Feb 2011 01:27:39 +0000 (18:27 -0700)]
regcomp.c: Add cast.

I found this through gdb.  Sign extension was happening.

13 years agoregcomp.c: Handle more cases of tricky fold chars
Karl Williamson [Wed, 9 Feb 2011 17:56:59 +0000 (10:56 -0700)]
regcomp.c: Handle more cases of tricky fold chars

Certain characters are not placed in EXACTish nodes because of problems
mostly with the optimizer.  However, not all notations that generated
those characters were caught.  This catches all but those in \N{}
constructs; which is coming later.

This does not use FOLDCHAR, which doesn't know the difference between
/d and /u; instead it uses ANYOFV, which does handle those cases already,
at the expense of larger (in storage) regexes for these few characters.
If this were deemed a problem, there would be some work involved in
adding FOLDCHARU, and fixing the code where it doesn't work properly now.

13 years agoregex: Add comments
Karl Williamson [Wed, 9 Feb 2011 17:37:17 +0000 (10:37 -0700)]
regex: Add comments

13 years agoregexec.c: Give context for ANYOFV call
Karl Williamson [Wed, 9 Feb 2011 17:34:02 +0000 (10:34 -0700)]
regexec.c: Give context for ANYOFV call

This converts one case where ANYOFV is now usable to allow it to match
more than one character.

13 years agoregexec.c: Give context for ANYOFV call
Karl Williamson [Wed, 9 Feb 2011 17:07:47 +0000 (10:07 -0700)]
regexec.c: Give context for ANYOFV call

This converts one case where ANYOFV is now usable to allow it to match
more than one character.

13 years agoregcomp.c: Add comment
Karl Williamson [Wed, 9 Feb 2011 16:44:10 +0000 (09:44 -0700)]
regcomp.c: Add comment

13 years agoregcomp.c: simplify conditional
Karl Williamson [Mon, 7 Feb 2011 18:28:11 +0000 (11:28 -0700)]
regcomp.c: simplify conditional

A previous commit removed some things, so this block can be rearranged

13 years agoAdd comments
Karl Williamson [Mon, 7 Feb 2011 18:27:49 +0000 (11:27 -0700)]
Add comments

13 years agoregexec.c: Remove folding now done in regcomp
Karl Williamson [Sat, 5 Feb 2011 17:50:37 +0000 (10:50 -0700)]
regexec.c: Remove folding now done in regcomp

13 years agoregcomp.c: Remove special handling for U+00DF
Karl Williamson [Mon, 7 Feb 2011 18:14:50 +0000 (11:14 -0700)]
regcomp.c: Remove special handling for U+00DF

The code elsewhere is now better equipped to handle this.

13 years agoregcomp.c: tell regexec more about multi-char folds
Karl Williamson [Mon, 7 Feb 2011 18:11:16 +0000 (11:11 -0700)]
regcomp.c: tell regexec more about multi-char folds

A multi-char fold that matches in the Latin1 range needs to have that
fact communicated to regexec.

13 years agoregcomp.c: Synthetic start class should include ord >255 folds
Karl Williamson [Mon, 7 Feb 2011 04:48:55 +0000 (21:48 -0700)]
regcomp.c: Synthetic start class should include ord >255 folds

Some characters above 255 fold to the < 256 range.  These need to be in
the synthetic start class so the optimizer won't reject them.

This is temporary code which creates false positives, to be
replaced by more precise matching later.

13 years agoRevert "l1_char_class_tab.h: Remove multi-char fold targets"
Karl Williamson [Mon, 7 Feb 2011 04:22:32 +0000 (21:22 -0700)]
Revert "l1_char_class_tab.h: Remove multi-char fold targets"

This reverts commit 88c8c9616516015e2fe0b502cdb92dc4efcc0c10.

It turns out that these multi-char fold targets are now needed;
In a future commit, I plan to compile in the dozen or so rules that
are needed to avoid a Latin1-only regex from having to go out to the
utf8 tables to avoid the performance penalty; or calling code can use
the also forthcoming 'use re "/aa"'.

13 years agoregcomp.c: Be more precise about ANYOF matching flag
Karl Williamson [Sun, 6 Feb 2011 03:04:54 +0000 (20:04 -0700)]
regcomp.c: Be more precise about ANYOF matching flag

There are two flags for matching outside the ANYOF bitmap.  Instead of
setting both, set the corresponding one.

13 years agoregcomp.c: Put two static functions in embed.fnc
Karl Williamson [Sun, 6 Feb 2011 02:52:42 +0000 (19:52 -0700)]
regcomp.c: Put two static functions in embed.fnc

13 years agoUpdate comment
Karl Williamson [Sun, 6 Feb 2011 02:36:47 +0000 (19:36 -0700)]
Update comment

13 years agoRemove extraneous trailing whitespace from Win32 makefiles.
Nicholas Clark [Sun, 13 Feb 2011 10:34:31 +0000 (10:34 +0000)]
Remove extraneous trailing whitespace from Win32 makefiles.

73c9ebc71cb12c3c added a "blank" line with two spaces to Makefile,
e64b1bd1d1005342 added a dependency rule with a trailing tab to Makefile,
and 9ce5b024fd73d3a7 propagated that rule to makefile.mk

13 years agoperldiag: Remove quotes around message
Father Chrysostomos [Mon, 14 Feb 2011 07:55:40 +0000 (23:55 -0800)]
perldiag: Remove quotes around message

The quotes might make podchecker happy, but they cause this entry to
be formatted differently from the rest.

13 years agoperldiag: grammar
Father Chrysostomos [Mon, 14 Feb 2011 07:52:56 +0000 (23:52 -0800)]
perldiag: grammar

13 years agoperldiag: more sorting
Father Chrysostomos [Mon, 14 Feb 2011 07:51:58 +0000 (23:51 -0800)]
perldiag: more sorting

13 years agoperldiag: grammar
Father Chrysostomos [Mon, 14 Feb 2011 07:49:07 +0000 (23:49 -0800)]
perldiag: grammar

13 years agoperldiag: pod syntax and reflow
Father Chrysostomos [Mon, 14 Feb 2011 07:45:48 +0000 (23:45 -0800)]
perldiag: pod syntax and reflow

13 years agoperldiag: resort some items
Father Chrysostomos [Mon, 14 Feb 2011 07:44:00 +0000 (23:44 -0800)]
perldiag: resort some items

13 years agoperldiag: reflow some entries
Father Chrysostomos [Mon, 14 Feb 2011 07:42:20 +0000 (23:42 -0800)]
perldiag: reflow some entries

13 years agoDelete ‘Recursive inheritance detected while looking for method’
Father Chrysostomos [Mon, 14 Feb 2011 07:37:49 +0000 (23:37 -0800)]
Delete ‘Recursive inheritance detected while looking for method’

from perldiag.

This message has not occurred since 5.8.x.

13 years agoperldiag: grammar
Father Chrysostomos [Mon, 14 Feb 2011 07:37:07 +0000 (23:37 -0800)]
perldiag: grammar

13 years agoperldiag: more resorting
Father Chrysostomos [Mon, 14 Feb 2011 07:35:20 +0000 (23:35 -0800)]
perldiag: more resorting

13 years agoperldiag: typo
Father Chrysostomos [Mon, 14 Feb 2011 07:27:48 +0000 (23:27 -0800)]
perldiag: typo

13 years agoperldiag: reflow an entry
Father Chrysostomos [Mon, 14 Feb 2011 07:23:20 +0000 (23:23 -0800)]
perldiag: reflow an entry

13 years agoperldiag: Move the \p{} entry
Father Chrysostomos [Mon, 14 Feb 2011 07:10:59 +0000 (23:10 -0800)]
perldiag: Move the \p{} entry

13 years agoperldiag: sort some entries
Father Chrysostomos [Mon, 14 Feb 2011 07:02:21 +0000 (23:02 -0800)]
perldiag: sort some entries

13 years agoperldiag: missing article
Father Chrysostomos [Mon, 14 Feb 2011 07:02:01 +0000 (23:02 -0800)]
perldiag: missing article

13 years agoperldiag: remove repeated reference
Father Chrysostomos [Mon, 14 Feb 2011 06:58:09 +0000 (22:58 -0800)]
perldiag: remove repeated reference

13 years agoperldiag: reflow ‘Number with no digits’
Father Chrysostomos [Mon, 14 Feb 2011 06:57:31 +0000 (22:57 -0800)]
perldiag: reflow ‘Number with no digits’

13 years agoperldiag: missing dot
Father Chrysostomos [Mon, 14 Feb 2011 06:52:48 +0000 (22:52 -0800)]
perldiag: missing dot

13 years agoperldiag: reflow ‘Non-octal character’
Father Chrysostomos [Mon, 14 Feb 2011 06:50:43 +0000 (22:50 -0800)]
perldiag: reflow ‘Non-octal character’

13 years agoperldiag: reflow; missing dot
Father Chrysostomos [Mon, 14 Feb 2011 06:15:47 +0000 (22:15 -0800)]
perldiag: reflow; missing dot

13 years agoperldiag: punctuation and formatting
Father Chrysostomos [Mon, 14 Feb 2011 06:14:30 +0000 (22:14 -0800)]
perldiag: punctuation and formatting

13 years agoperldiag: reflow ‘Invalid hexadecimal number’
Father Chrysostomos [Mon, 14 Feb 2011 06:06:49 +0000 (22:06 -0800)]
perldiag: reflow ‘Invalid hexadecimal number’

13 years agoperldiag: resort some entries
Father Chrysostomos [Mon, 14 Feb 2011 06:04:56 +0000 (22:04 -0800)]
perldiag: resort some entries

13 years agoperldiag: missing hyphen
Father Chrysostomos [Mon, 14 Feb 2011 06:03:31 +0000 (22:03 -0800)]
perldiag: missing hyphen

13 years agoperldiag: reflow a couple of entries
Father Chrysostomos [Mon, 14 Feb 2011 06:02:00 +0000 (22:02 -0800)]
perldiag: reflow a couple of entries

13 years agoperldiag: Make two entries for my/state and pkgs
Father Chrysostomos [Mon, 14 Feb 2011 05:59:28 +0000 (21:59 -0800)]
perldiag: Make two entries for my/state and pkgs

Not only was it not put in alphabetical order when "my" was changed to
"%s" on the introduction of state variables, but it’s easier to find
them if there are two entries.

13 years agoperldiag: retitle Ambiguous use of %c{%s%s}
Father Chrysostomos [Mon, 14 Feb 2011 05:56:52 +0000 (21:56 -0800)]
perldiag: retitle Ambiguous use of %c{%s%s}

This is not very helpful:

=item Ambiguous use of %c{%s%s} resolved to %c%s%s

especially since it is functionally identical to the previous entry:

=item Ambiguous use of %c{%s} resolved to %c%s

Not only can diagnostics.pm never find it, but it is hard for human
beings to understand what the different is at first glance, too.

So filling in the second and fourth %s’s with the two possible values
slays a twain of avians with one piece of petrified matter.

13 years agoperldiag: reflow ‘Missing right brace on \N{}’
Father Chrysostomos [Mon, 14 Feb 2011 05:37:48 +0000 (21:37 -0800)]
perldiag: reflow ‘Missing right brace on \N{}’

for ‘use diagnostics’ output on eighty-column terminals

13 years agoperldiag: reflow ‘Missing braces on \N{}’ for 80 cols.
Father Chrysostomos [Mon, 14 Feb 2011 02:46:53 +0000 (18:46 -0800)]
perldiag: reflow ‘Missing braces on \N{}’ for 80 cols.

13 years agoperldiag: sort the ma* entries
Father Chrysostomos [Mon, 14 Feb 2011 02:41:59 +0000 (18:41 -0800)]
perldiag: sort the ma* entries

13 years agoperldiag: whitespace; grammar
Father Chrysostomos [Mon, 14 Feb 2011 02:40:29 +0000 (18:40 -0800)]
perldiag: whitespace; grammar

13 years agoperldiag: an number -> a number
Father Chrysostomos [Mon, 14 Feb 2011 02:34:02 +0000 (18:34 -0800)]
perldiag: an number -> a number

That’s my own typo.

13 years agoperldiag: reflow ‘Lexing code attempted to stuff...’
Father Chrysostomos [Mon, 14 Feb 2011 02:31:50 +0000 (18:31 -0800)]
perldiag: reflow ‘Lexing code attempted to stuff...’

for the sake of diagnostics.pm, which displays the link simply as
lex_stuff_pvn_flags.

13 years agoSilence win32 smoke compiler warning
Karl Williamson [Sat, 12 Feb 2011 20:38:53 +0000 (13:38 -0700)]
Silence win32 smoke compiler warning

13 years agoSilence util.c compiler warning from win32 smokes
Karl Williamson [Sat, 12 Feb 2011 20:38:16 +0000 (13:38 -0700)]
Silence util.c compiler warning from win32 smokes

13 years agoperldiag: Suggest use re '/m' for $*
Father Chrysostomos [Mon, 14 Feb 2011 01:07:03 +0000 (17:07 -0800)]
perldiag: Suggest use re '/m' for $*

13 years agoperldiag: reflow $* and $#
Father Chrysostomos [Mon, 14 Feb 2011 00:57:27 +0000 (16:57 -0800)]
perldiag: reflow $* and $#

13 years agoperldiag: more typos and grammar
Father Chrysostomos [Sun, 13 Feb 2011 22:52:14 +0000 (14:52 -0800)]
perldiag: more typos and grammar

13 years agoperldiag: fewer, not less
Father Chrysostomos [Sun, 13 Feb 2011 22:47:10 +0000 (14:47 -0800)]
perldiag: fewer, not less

(plus a bit of reflow)

13 years agoReflow perldiag/Invalid separator...
Father Chrysostomos [Sun, 13 Feb 2011 22:45:03 +0000 (14:45 -0800)]
Reflow perldiag/Invalid separator...

for an eighty-column terminal under ‘use diagnostics’

13 years agoMention mro plugins in perldiag
Father Chrysostomos [Sun, 13 Feb 2011 22:39:37 +0000 (14:39 -0800)]
Mention mro plugins in perldiag

and reflow the entry

13 years agoSort some perldiag entries
Father Chrysostomos [Sun, 13 Feb 2011 22:49:36 +0000 (14:49 -0800)]
Sort some perldiag entries