[ANN] Guile-WM 0.1/Guile XCB 1.1

2013-08-24 Thread mark
Hi all, I feel like it's time to announce Guile-WM, my stab at an all-Guile Window Manager. It's actually more of a toolkit for writing X applications, with the window manager stuff being what's implemented so far. It includes live REPL support, the usual keymap/minibuffer/user-defined command pa

Re: guile-2.0 on mingw: the sequel

2013-08-24 Thread Panicz Maciej Godek
2013/8/24 Eli Zaretskii > > yes, it seems that this was the reason. So now the guile > > interpreter runs properly, but I still have a problem with > > running a program that, having been linked against > > libguile, would call scm_with_guile or scm_init_guile, e.g. > > === > > #include > > void

Re: [ANN] Guile-WM 0.1/Guile XCB 1.1

2013-08-24 Thread Mark H Weaver
Hi Mark, m...@markwitmer.com writes: > I feel like it's time to announce Guile-WM, my stab at an all-Guile > Window Manager. It's actually more of a toolkit for writing X > applications, with the window manager stuff being what's implemented so > far. It includes live REPL support, the usual > ke

Re: asynchronous socket library

2013-08-24 Thread Mark H Weaver
Hi Mark, Sorry for taking so long to respond. m...@markwitmer.com writes: > Mark H Weaver writes: > >> m...@markwitmer.com writes: >>> Reading and writing to a socket seems to lend itself well to custom >>> binary ports, >> >> Why do you say that? For most purposes, Guile's native file ports a

Re: [ANN] Guile-WM 0.1/Guile XCB 1.1

2013-08-24 Thread Amirouche Boubekki
2013/8/24 Mark H Weaver > Hi Mark, > > m...@markwitmer.com writes: > > > I feel like it's time to announce Guile-WM, my stab at an all-Guile > > Window Manager. It's actually more of a toolkit for writing X > > applications, with the window manager stuff being what's implemented so > > far. It in

Re: [ANN] Guile-WM 0.1/Guile XCB 1.1

2013-08-24 Thread Matt Wette
FYI, there is also "sawfish" : http://sawfish.wikia.com/wiki/Main_Page I used sawfish (aka sawmill?) many years ago On Aug 24, 2013, at 4:07 PM, Amirouche Boubekki wrote: > > > > 2013/8/24 Mark H Weaver > Hi Mark, > > m...@markwitmer.com writes: > > > I feel like it's time to announce Gui

Re: [ANN] Guile-WM 0.1/Guile XCB 1.1

2013-08-24 Thread Klaus Schilling
From: Matt Wette Subject: Re: [ANN] Guile-WM 0.1/Guile XCB 1.1 Date: Sat, 24 Aug 2013 16:40:18 -0700 > FYI, there is also "sawfish" : http://sawfish.wikia.com/wiki/Main_Page > > I used sawfish (aka sawmill?) many years ago > > On Aug 24, 2013, at 4:07 PM, Amirouche Boubekki wrote: > > > > >

Re: [ANN] Guile-WM 0.1/Guile XCB 1.1

2013-08-24 Thread mark . d . witmer
Mark H Weaver writes: > This all sounds very exciting! Enough so that I finally pulled > guile-xcb and attempted to build it from git. Unfortunately, I ran into > several problems: Thanks for taking a look at it. I'll see if I can help: > > * Although the README says that Guile 2.0.9 is requi

Re: asynchronous socket library

2013-08-24 Thread mark . d . witmer
Mark H Weaver writes: > > First of all, that '(close-port port)' is wrong. Here you are trying to > tell Guile how to close 'port', and this just recurses. I guess it > should be (close-port auth-file)'. That's right. It's two bugs, actually---closing the file would cause an infinite loop and