Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9375
Modified Files: Tag: devel_0_37 s_path.c Log Message: glob_update_path(): added (for use by class browser)
Index: s_path.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/s_path.c,v retrieving revision 1.1.1.2.2.4 retrieving revision 1.1.1.2.2.5 diff -C2 -d -r1.1.1.2.2.4 -r1.1.1.2.2.5 *** s_path.c 19 Oct 2004 11:14:49 -0000 1.1.1.2.2.4 --- s_path.c 25 Oct 2004 15:17:47 -0000 1.1.1.2.2.5 *************** *** 119,122 **** --- 119,130 ---- }
+ /* by matju; for use by class browser */ + void glob_update_path (void) { + t_namelist *nl; + sys_vgui("global pd_path; set pd_path {"); + for (nl=pd_path; nl; nl=nl->nl_next) sys_vgui("%s ",nl->nl_string); + sys_vgui("}\n"); + } + #ifdef MSW #define MSWOPENFLAG(bin) (bin ? _O_BINARY : _O_TEXT)