Re: [dev] Xft(?) bug with emoji

2018-08-09 Thread Hiltjo Posthuma
On Thu, Aug 09, 2018 at 02:23:12PM +0300, Alexander Krotov wrote: > Here is the program to reproduce Xft bug with X11 error. OK1 is printed, > OK2 is not. > > Just FYI that the bug is localized and it is not a dmenu problem at all. > /* > gcc xftbug.c -lX11 -lXft -I /usr/include/freetype2 -lfontc

Re: [dev] git log query on web server

2018-08-09 Thread Hiltjo Posthuma
On Thu, Aug 09, 2018 at 08:36:35AM -0400, Greg Reagle wrote: > This link used to show my contributions to sbase: > https://git.suckless.org/sbase/log/?qt=author&q=reagle > > Now it returns: 404 Not Found > nginx > > Does anyone know whether this is still possible, and if yes what the proper > sy

Re: [dev] git log query on web server

2018-08-09 Thread Laslo Hunhold
On Thu, 09 Aug 2018 09:09:36 -0400 Greg Reagle wrote: Dear Greg, > Thank you for explaining Laslo. I had it on my resume. :> oh I understand! Why not just link to the project[0] itself? :) With best regards Laslo [0]:http://core.suckless.org/sbase -- Laslo Hunhold

Re: [dev] git log query on web server

2018-08-09 Thread Greg Reagle
Thank you for explaining Laslo. I had it on my resume. :>

Re: [dev] git log query on web server

2018-08-09 Thread Laslo Hunhold
On Thu, 09 Aug 2018 08:36:35 -0400 Greg Reagle wrote: Dear Greg, > This link used to show my contributions to sbase: > https://git.suckless.org/sbase/log/?qt=author&q=reagle > > Now it returns: 404 Not Found > nginx > > Does anyone know whether this is still possible, and if yes what the > pro

[dev] git log query on web server

2018-08-09 Thread Greg Reagle
This link used to show my contributions to sbase: https://git.suckless.org/sbase/log/?qt=author&q=reagle Now it returns: 404 Not Found nginx Does anyone know whether this is still possible, and if yes what the proper syntax is? Thanks.

Re: [dev] Xft(?) bug with emoji

2018-08-09 Thread Alexander Krotov
Xft bug is submitted upstream: https://bugs.freedesktop.org/show_bug.cgi?id=107534

Re: [dev] Xft(?) bug with emoji

2018-08-09 Thread Alexander Krotov
Here is the program to reproduce Xft bug with X11 error. OK1 is printed, OK2 is not. Just FYI that the bug is localized and it is not a dmenu problem at all. /* gcc xftbug.c -lX11 -lXft -I /usr/include/freetype2 -lfontconfig */ #include #include #include int main(void) { Display *dpy = XOpen

Re: [dev] Xft(?) bug with emoji

2018-08-09 Thread Alexander Krotov
Attached is the result of running printf '\xf0\x9f\x93\x93' | XFT_DEBUG=1 dmenu XFT_DEBUG=1 XftFontOpenName "monospace:size=10": Pattern has 2 elts (size 16) family: "monospace"(s) size: 10(f)(s) Match Pattern has 43 elts (size 48) family: "DejaVu Sans Mono"(s) fami

Re: [dev] Xft(?) bug with emoji

2018-08-09 Thread Alexander Krotov
On 09/08/18 12:12, Hiltjo Posthuma wrote: > > Thanks for providing a test-program. > > I still cannot reproduce this bug on OpenBSD. > > Do I need some specific font for it to crash? I've seen reports of issues with > the Google Noto Emoji font. > > fc-match 'monospace:size=10' is 'DejaVu Sans Mono

Re: [dev] Xft(?) bug with emoji

2018-08-09 Thread Hiltjo Posthuma
On Thu, Aug 09, 2018 at 03:18:42AM +0300, Alexander Krotov wrote: > I have reduced dmenu segfault down to a simple program: > https://bugs.freedesktop.org/show_bug.cgi?id=107531 > > Please read the program and see if you can tell what is wrong or > confirm a bug. Apparently the bug is in fontconfi

[dev][dwm][PATCH] Fix memory leaks

2018-08-09 Thread Isaac Andrés Canales Martínez
Hi, I am quite new in the suckless world and this is the first time that I contribute, so apologies in advance if I am not communicating or doing things the way I am supposed to. Some weeks ago I sent patches to the hackers mailing list to fix memory leaks and to fix code style in dwm. I think th