Re: Info: segfault on get-help-window with ‘invalid’ infokey

2024-01-20 Thread Bugsy Abatantuono
> 3. Type: M-x describe-key RET a RET (segfault) Hey Gavin, I stole your fix and it seems to work here too: --- a/info/infodoc.c +++ b/info/infodoc.c @@ -466,7 +466,8 @@ *k++ = keystroke; *k = '\0'; - if (map[keystroke].value.function == NULL) + if

Re: Info: segfault on get-help-window with ‘invalid’ infokey

2024-01-19 Thread Bugsy Abatantuono
On Wednesday, January 17th, 2024 at 7:53 PM, Gavin Smith wrote: > > Thanks for the report; it should be fixed in commit 179b5a55 (2024-01-17). Hi, Gavin, the bug is still hiding in the code: 1. Content of the file ./keys: #info a invalid 2. Run: info --init-file ./keys 3. Type: M-x

Re: Info: segfault on get-help-window with ‘invalid’ infokey

2024-01-17 Thread Gavin Smith
On Tue, Jan 16, 2024 at 08:30:14AM +, Bugsy Abatantuono wrote: > Steps to reproduce bug: > > 1. Content of the file ./keys: > > #info > a invalid > > 2. Run: info —init-file ./keys > 3. Type: H (segfault) > > --version: info (GNU texinfo) 7.0.2 > Thanks for the report; it should

Info: segfault on get-help-window with ‘invalid’ infokey

2024-01-16 Thread Bugsy Abatantuono
Steps to reproduce bug: 1. Content of the file ./keys: #info a invalid 2. Run: info —init-file ./keys 3. Type: H (segfault) --version: info (GNU texinfo) 7.0.2

Re: Info: segfault on get-help-window with ‘invalid’ infokey

2024-01-16 Thread Bugsy Abatantuono
> 2. Run: info —init-file ./keys Apologies. The —init-file should be --init-file. (Auto-formatter error.)