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
2 changes: 1 addition & 1 deletion embed.fnc
Original file line number Diff line number Diff line change
Expand Up @@ -5306,7 +5306,7 @@ ST |char |first_symbol |NN const char *pat \
RS |const char *|get_num |NN const char *patptr \
|NN SSize_t *lenptr
S |const char *|group_end |SPTR const char *patptr \
|EPTR const char *patend \
|EPTRQ const char *patend \
|char ender
RS |SV * |is_an_int |NN const char *s \
|STRLEN l
Expand Down
2 changes: 1 addition & 1 deletion proto.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion t/op/pack.t
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ BEGIN {
set_up_inc(qw '../lib ../cpan/Math-BigInt/lib');
}

plan tests => 14724;
plan tests => 14726;

use strict;
use warnings qw(FATAL all);
Expand Down Expand Up @@ -2066,3 +2066,10 @@ SKIP:
like("$@", qr{Mismatched brackets in template},
"should match brackets correctly even without recursion");
}

{ # see discussion in #23980
ok !eval { my $x = pack "C["; 1 },
"pack throws with no closing ]";
like $@, qr/No group ending character '\]' found in template/,
"check the message";
}
Loading