perl5
perl5 copied to clipboard
🐪 The Perl programming language
As stated in the C comments added in this commit, it has always worked to say s/mark1/mark2/ where the marks are literal characters. This is incorrect because the marks should...
I've had this PR laying around on my local Git repo for a long time. This simply upstreams some patches that Cygwin applies to Perl.
This change is merging the two ideas from @demerphq #19513 and @Leont #19523 by relying on a traditional MANIFEST.SKIP file. Case #19523 simplifies the way we can easily exclude common...
In PR #18827 Dan Jacobson requested we provide examples for slices on an array element or hash element, he struggled to get the patch right so I am pushing this...
This replaces the lists of files to skip in `Porting/manicheck`, `t/porting/manifest.t` and `Porting/makerel` with a centralized and standardized `MANIFEST.SKIP` file. This would also allow us to add a make manifest...
'#define' has seven characters, so following it with a \t makes it look like '#define ' when it is not, which then frustrates attempts to find where a given define...
This file is intended to list all the files in the repo which are not listed in the main MANIFEST file, and which are used only for development purposes, especially...
Remove experimental status for lookbehind. This patch should not be applied until https://github.com/Perl/perl5/pull/19442 is merged.
The test times out regularly. Lets just disable it for now. If someone cares we can revert this patch.
The original line: elsif ($^O eq 'MSWin32' or $^O eq 'msys' or -e "con") { can succeed if a file or dir named "con" exists in current dir and OS...