mirror of
https://git.freebsd.org/ports.git
synced 2025-06-03 20:06:29 -04:00
A few important changes: - '.' is no longer in @INC. - "do" now gives a deprecation warning when it fails to load a file which it would have loaded had "." been in @INC. - In regular expression patterns, a literal left brace "{" should be escaped. Changes: https://metacpan.org/pod/release/XSAWYERX/perl-5.26.0/pod/perldelta.pod Sponsored by: Absolight
11 lines
448 B
C
11 lines
448 B
C
--- vutil.h.orig 2015-04-15 07:47:18 UTC
|
|
+++ vutil.h
|
|
@@ -115,7 +115,7 @@ S_croak_xs_usage(pTHX_ const CV *const c
|
|
Perl_croak_nocontext("Usage: %s(%s)", gvname, params);
|
|
} else {
|
|
/* Pants. I don't think that it should be possible to get here. */
|
|
- Perl_croak_nocontext("Usage: CODE(0x%"UVxf")(%s)", PTR2UV(cv), params);
|
|
+ Perl_croak_nocontext("Usage: CODE(0x%" UVxf ")(%s)", PTR2UV(cv), params);
|
|
}
|
|
}
|
|
|