Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions pod/perldiag.pod
Original file line number Diff line number Diff line change
Expand Up @@ -2283,6 +2283,11 @@ L<builtin> by using the C<unimport> method (likely via C<no builtin ...>
syntax), but the requested function has not been imported into the current
scope.

=item %s (%d) does not match %s (%d)

(P) The size of a PerlIO function table passed by an extension is smaller than
expected.

=item Don't know how to get file name

(P) C<PerlIO_getname>, a perl internal I/O function specific to VMS, was
Expand Down Expand Up @@ -2403,6 +2408,10 @@ single form when it must operate on them directly. Either you've passed
an invalid file specification to Perl, or you've found a case the
conversion routines don't handle. Drat.

=item error creating/fetching widecharmap entry for 0x%X

(P) A failure happened when folding a character for a regex trie.

=item Error %s in expansion of %s

(F) An error was encountered in handling a user-defined property
Expand Down Expand Up @@ -5082,6 +5091,14 @@ the glob and a destructor that adds a new object to the glob.

(P) The lexer got into a bad state parsing a string with brackets.

=item panic! In trie construction, no char mapping for %d

(P) A failure happened in the construction of a regex trie.

=item panic! In trie construction, unknown node type %u %s

(P) An unexpected node type was encountered in regex trie construction.

=item panic: kid popen errno read

(F) A forked child returned an incomprehensible message about its errno.
Expand Down Expand Up @@ -6217,6 +6234,11 @@ requested.
hash) parameter. The slurpy parameter takes all the available arguments,
so there can't be any left to fill later parameters.

=item %s (%d) smaller than %s (%d)

(P) The size of a PerlIO instance passed by an extension is smaller than
expected.

=item Smart matching a non-overloaded object breaks encapsulation

(F) You should not use the C<~~> operator on an object that does not
Expand Down
2 changes: 1 addition & 1 deletion t/porting/diag.t
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ my $source_msg_re =
"(?<routine>\\bDIE\\b|$function_re)";
my $text_re = '"(?<text>(?:\\\\"|[^"]|"\s*[A-Z_]+\s*")*)"';
my $source_msg_call_re = qr/$source_msg_re(?:_nocontext)? \s*
\( (?: \s* Perl_form \( )? (?:aTHX_)? \s*
\( (?: \s* (?: Perl_ )? form \( )? (?: \s* aTHX_)? \s*
(?:packWARN\d*\((?<category>.*?)\),)? \s*
(?:(?<category>WARN_DEPRECATED__\w+)\s*,(?:\s*(?<version_string>"[^"]+")\s*,)?)? \s*
$text_re /x;
Expand Down
Loading