On Mon, Nov 24, 2003 at 10:51:12AM +0100, Johannes Segitz wrote: > | Ion startup error log: > | >> ioncorelib.lua:186: bad argument #1 to `find' (string expected, got nil)
Apparently I had again changed the order in which some client window initialisation functions are called and cwin:name() is nil when get_winprop is called. The attached patch should fix this. -- Tuomo
Index: clientwin.c =================================================================== RCS file: /share/cvsrepos/ion/ioncore/clientwin.c,v retrieving revision 1.103 diff -r1.103 clientwin.c 301d300 < get_winprops(cwin); 303a303 > get_winprops(cwin);
