mauke
mauke
After that message, cabal exits and I'm back at the shell prompt. `echo $?` indicates it exited with a non-zero status. No idea which file is the "offending" one because...
> Still, as a quirk, I wonder whether it could be fixed. Either the HEK structure or the HE structure could store an additional bit to say if the key...
There is a full list (as of Unicode 14) in , but the build code generates the delimiters from the Unicode database shipped with Perl. The algorithm is in `regen/unicode_constants.pl`,...
The following patch seems to fix the problem, but the code kind of scares me (and it really needs tests): ```patch diff --git ext/File-Find/lib/File/Find.pm ext/File-Find/lib/File/Find.pm index af84fbf116..fb4facf356 100644 --- ext/File-Find/lib/File/Find.pm...
Conceptually, Perl programs have a compilation phase (where source code is parsed and translated to an internal representation) and a run-time phase (where the internal representation is executed). In practice,...
What does a user care where a program died?
> `$!` should be different from 0 (perhaps 1) `$!` isn't just a random variable. It is an interface to the system's `errno` and `strerror(errno)`. Blindly setting it to some...
> 2. `perldoc POSIX` tell me to use `END` instead of `atexit`, how do I add an END block but make it only run on a forked child process ?...
I think you want `cpanm --quiet Module::Build`, not `cpanm --quiet --installdeps Module::Build`. The latter only installs dependencies, not the module itself. (Also, I think you wrote `Module::Install` when you meant...
I call it a bug for two reasons: 1. It's counterintuitive. As a user, I would expect a selector that starts with `#foo` to only examine elements under `id="foo"` and...