pali

Results 36 issues of pali

Currently ANSI functions uses `char*` type for passing string arguments. And value of `char*` on Linux builds is interpreted to be encoded according to current locale settings, more precisely what...

It is possible that both ANSI and Unicode functions operates with UTF-8 encoding. This happens when `conv->drv_cp` (or `conv->dm_cp` -- depends on direction) is set to `CP_UTF8` and current locale...

Currently testing via i586-mingw32msvc-gcc cross compiler on Travis is done only via Makefile. Extends testing of this compiler also via cmake build system. CC: @rhabacker

As stated in https://github.com/storaged-project/udisks/issues/338 there are some improvements for current code which format disk to UDF: * Allow choosing media type or do some detection (currently it is hardcoded to...

Hi! Please consider adding additional mount options `uid=ignore` and `gid=ignore` for UDF filesystems when mounting removable devices. Mount options `-o uid=,uid=ignore` cause that all files visible in VFS would be...

How metacpan.org detects which source files contain POD documentation and which would be listed in "Documentation" section for release of distribution? It is based on whitelisted file extension? Or metacpan.org...

Documentation for [Perl::Critic::Policy::InputOutput::ProhibitBarewordFileHandles](https://metacpan.org/pod/Perl::Critic::Policy::InputOutput::ProhibitBarewordFileHandles) says that it prohibits barewords. And there are three exceptions: `STDIN`, `STDOUT` and `STDERR`. But it looks like that exception for these 3 barewords does not work...

Bug

Allow usage of `open local *STDERR` and disallow usage of `open *ABC` and `open \*ABC`. Fixes: https://github.com/Perl-Critic/Perl-Critic/issues/852 Fixes: https://github.com/Perl-Critic/Perl-Critic/issues/853

perl v5.24.0 on x86_64-linux only with core modules Devel::Cover 26cdb74c13457fcf3bc13f3b568b7028478c3a99 Test file: ``` use Encode qw(find_encoding); use Test::More tests => 1; my $latin1 = find_encoding('latin1'); my $orig = "\N{U+0080}"; $orig...

needs investigation

`%GetInfoType` hash from the `DBI::Const::GetInfoType` package provides mapping from string identifiers to DBI get_info numeric values. But documentation says this package is "new" and "nothing what is written here is...