Re: [dev] [dwm] new release - transition from Openbox

2019-02-07 Thread Szpak
Not all keyboards have a logo key, most of them have an alt key though. My keyboard doesn't have a win key. I believe that. :) But it's not an argument. I have one that even doesn't have some letters, but that doesn't mean it has to be supported. :) https://duckduckgo.com/?iax=images&ia=im

Re: [dev] [dwm] new release - transition from Openbox

2019-02-07 Thread Ahmed Khaled (David Gabriel)
And laptops has extra fn key :D I totally agree with you >Different matter is that "typical" keyboard has already at least 8 >modifiers key (2 x shift, 2 x alt, 2 x ctrl, logo, CapsLock). Which is >madness on its own. :) -- DG

Re: [dev] [dmenu] 4.9 segfault on input

2019-02-07 Thread Anselm Garbe
Hi there, can you be a bit more elaborate how to run into this bug? How does it occure in your setup? Is config.h modified? What are the inputs (from stdin), what do you enter? Thanks, Anselm On Thu, 7 Feb 2019 at 18:35, Jordan Timmerman wrote: > > First bug report -- also only an amateur at d

Re: [dev] [dmenu] 4.9 segfault on input

2019-02-07 Thread Jordan Timmerman
Hi Anselm, I run the following script: echo 'a\nb\nc' | dmenu I then press Enter. The program segaults. config.h is not modified (to the very best of my knowledge). I am using the dmenu package from the Arch Linux community packages database, which is packaged using the script you can see here:

Re: [dev] [dmenu] 4.9 segfault on input

2019-02-07 Thread Donald Allen
On Thu, 7 Feb 2019 at 22:58, Jordan Timmerman wrote: > > Hi Anselm, > > I run the following script: > > echo 'a\nb\nc' | dmenu > > I then press Enter. The program segaults. I just did this on an up-to-date Arch Linux system with dmenu 4.9 installed and it does not seg-fault on my system. dca@fra

Re: [dev] [dmenu] 4.9 segfault on input

2019-02-07 Thread Jordan Timmerman
Well shucks. Okay. Thanks for trying! Must be something on my end. Perhaps the version of a dynamically linked library could be affecting it? On Thu, Feb 7, 2019 at 10:13 PM Donald Allen wrote: > > On Thu, 7 Feb 2019 at 22:58, Jordan Timmerman wrote: > > > > Hi Anselm, > > > > I run the followin

Re: [dev] [dmenu] 4.9 segfault on input

2019-02-07 Thread Jordan Timmerman
Doing a print-based line-by-line binary search indicates the segfault occurs during a call to XmbLookupString. Does that ring any alarm bells for anyone? Seems to imply there's some kind of problem in my version of that X library, whichever one it is. Will keep looking. On Thu, Feb 7, 2019 at 10

Re: [dev] [dmenu] 4.9 segfault on input

2019-02-07 Thread Donald Allen
On Thu, 7 Feb 2019 at 23:33, Jordan Timmerman wrote: > > Doing a print-based line-by-line binary search indicates the segfault > occurs during a call to XmbLookupString. > > Does that ring any alarm bells for anyone? > > Seems to imply there's some kind of problem in my version of that X > library

Re: [dev] [dmenu] 4.9 segfault on input

2019-02-07 Thread Jordan Timmerman
Thanks, Donald. My `ldd` output includes all the same libraries as yours, although the addresses of the libraries of course differ. I'm pretty confident at this point that the segfault occurs during the call to libx11 XmbLookupString. I've attempted downgrading libx11 from 1.6.7 to 1.6.6 and rebu