Results 13 issues of Bruno Haible

When no debug info is available, the library just prints question marks. It could use the `/proc/self/maps` file (on Linux) to at least print the binary object file in which...

On Ubuntu 16.04, when I compile a program with "-g" or "-ggdb", for 32-bit mode programs, libbacktrace can infer file and line numbers. For 64-bit mode programs, this does not...

On a Linux/arm64 machine (Linux 3.13.0, Ubuntu EGLIBC 2.19-0ubuntu6.15), with the gc-8.0.4 package configured with defaults, the gctest hangs. When I retry it, it works: ``` $ ./gctest Completed 6...

`gnulib-tool` is a large shell script, from the GNU gnulib project. When I attempt to execute it through pash, with specific arguments, there is a parse error. Here is gnulib-tool-cmp,...

I ran ``` # python3 zenstates.py --list ... C6 State - Package - Enabled C6 State - Core - Enabled # python3 zenstates.py --c6-disable Disabling C6 state # python3 zenstates.py...

On Linux/powerpc (32-bit), gc-8.2.4 compiles fine but has two test failures: ``` FAIL: gctest FAIL: disclaim_weakmap_test ``` Here's the log from the VM created through https://git.savannah.gnu.org/gitweb/?p=gnulib/maint-tools.git;a=blob;f=platforms/environments/qemu/powerpc-linux-debian12.txt : ``` ================================ gc...

In the 'reserved-statement' nonterminal, there is an ambiguity if there is more than one whitespace character between the 'reserved-keyword' and the first non-whitespace character of the 'reserved-body', because these whitespace...

syntax
fast-track
LDML45

The rule for `reserved-statement` in https://github.com/unicode-org/message-format-wg/blob/main/spec/syntax.md and https://github.com/unicode-org/message-format-wg/blob/main/spec/message.abnf ``` reserved-statement = reserved-keyword [s reserved-body] 1*([s] expression) ``` contains two ambiguities: 1) If there is more than one whitespace character after...

syntax
Preview-Feedback

The comment in `message.abnf` line 74 ``` ; name matches https://www.w3.org/TR/REC-xml-names/#NT-NCName ``` is slightly incorrect: `NCName` can contain U+FFFD, whereas `name` cannot. I'm **not** suggesting to add U+FFFD to the...

syntax
Preview-Feedback

**Describe the bug** The function `json_tokener_parse_verbose` is documented to "if it fails return the error in *error". One of the documented error values is `json_tokener_error_memory`. However, if there is a...