Re: [dev] st slow startup

2013-05-11 Thread Christoph Lohmann
Greetings. On Sat, 11 May 2013 22:02:25 +0200 Sanel Zukan wrote: > > The answer is simple: No. Fltk is written in this April fool’s joke > > called »C++« which too many people have used in the past to cause global > > warming. > > FLTK was written in C++ subset (there are no even namespaces

Re: [dev] Re: st slow startup

2013-05-11 Thread Christoph Lohmann
Greetings. On Sat, 11 May 2013 22:01:37 +0200 Johannes Hofmann wrote: > Hi, > > in my previous patch I was missing some conditions in xunloadfonts() > which crashes st when changing fontsize. Sorry for that. Thanks, it’s been applied. Sincerely, Christoph Lohmann

[dev] Re: st slow startup

2013-05-11 Thread Johannes Hofmann
Hi, in my previous patch I was missing some conditions in xunloadfonts() which crashes st when changing fontsize. Sorry for that. Johannes diff --git a/st.c b/st.c index 56955a3..c1e806e 100644 --- a/st.c +++ b/st.c @@ -369,6 +369,7 @@ static void xresettitle(void); static void xseturgency(in

Re: [dev] surf: typo in manpage

2013-05-11 Thread Thorsten Glaser
j. van den hoff dixit: > -.B Ctrl\-f and Ctrl\-\\ > currently, the corresponding line renders as "Ctrl-f and Ctrl-" when calling The nroff escape for a backslash is actually \e ☺ • https://www.mirbsd.org/manUSD/21.troff • https://www.mirbsd.org/manUSD/22.trofftut bye, //mirabilos -- Gast: „Ei

Re: [dev] st slow startup

2013-05-11 Thread Sanel Zukan
> The answer is simple: No. Fltk is written in this April fool’s joke > called »C++« which too many people have used in the past to cause global > warming. FLTK was written in C++ subset (there are no even namespaces) and if you compare it to the whole C Gtk stack (or dozens C libs out there)

[dev] surf: typo in manpage

2013-05-11 Thread j. van den hoff
hopefully the right way to report this. applying the following patch the manpage formats as it should: 8<--- diff --git a/surf.1 b/surf.1 index 89276a0..4f66ca9 100644 --- a/surf.1 +++ b/surf.1 @@ -103,7 +103,7 @@ Zooms page out .B Ctrl\-Shift\-q Resets Zoom .

Re: [dev] st slow startup

2013-05-11 Thread Christoph Lohmann
Greetings. On Sat, 11 May 2013 14:26:05 +0200 Sanel Zukan wrote: > > X11: pango on top of cairo on top of fontconfig and xft on top of x11. > > The thing is how given stack works for Gtk+ and/or apps using directly Pango. > However, there are alternatives, like FLTK (http://fltk.org) which relie

Re: [dev] st slow startup

2013-05-11 Thread Sanel Zukan
> X11: pango on top of cairo on top of fontconfig and xft on top of x11. The thing is how given stack works for Gtk+ and/or apps using directly Pango. However, there are alternatives, like FLTK (http://fltk.org) which relies only on Xft drawing... Sanel On Sat, May 11, 2013 at 8:56 AM, Christoph

Re: [dev] st slow startup

2013-05-11 Thread Christoph Lohmann
Greetings. On Sat, 11 May 2013 08:56:03 +0200 Johannes Hofmann wrote: > Hi, > > as others also have noticed, Xft based st starts slow on some > systems. For me it helps if FcFontSort() is done lazily as shown > below. Thanks for the patch, it improves the startup time. This still does not sol