Update of /cvsroot/pure-data/externals/bbogart/popup In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20119
Modified Files: README.txt popup.c Log Message: Fixed name-clash bug thanks to Guenter!
Index: popup.c =================================================================== RCS file: /cvsroot/pure-data/externals/bbogart/popup/popup.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** popup.c 17 Oct 2004 01:24:23 -0000 1.6 --- popup.c 5 Nov 2004 15:44:44 -0000 1.7 *************** *** 396,400 **** DEBUG(post("name start");)
! x->x_name->s_name = name->s_name; sys_vgui(".x%x.c.s%x configure -text "%s"\n", x->x_glist, x, name->s_name); } --- 396,400 ---- DEBUG(post("name start");)
! x->x_name = name; sys_vgui(".x%x.c.s%x configure -text "%s"\n", x->x_glist, x, name->s_name); }
Index: README.txt =================================================================== RCS file: /cvsroot/pure-data/externals/bbogart/popup/README.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** README.txt 20 Mar 2004 23:52:48 -0000 1.2 --- README.txt 5 Nov 2004 15:44:44 -0000 1.3 *************** *** 36,38 **** --- 36,41 ---- options [opt1] [...] List of the popup options
+ BUGS: + - Do not use a loadbang to set a patch-default value. Will cause a segfault. + Have Fun.