Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3900
Modified Files: Tag: branch-v0-39-2-extended u_main.tk Log Message: checked in fix for when Pd launchs the browser directly. It needs to start it with an & so that Pd doesn't wait for it to finish
Index: u_main.tk =================================================================== RCS file: /cvsroot/pure-data/pd/src/u_main.tk,v retrieving revision 1.17.2.25 retrieving revision 1.17.2.26 diff -C2 -d -r1.17.2.25 -r1.17.2.26 *** u_main.tk 16 Oct 2007 22:41:04 -0000 1.17.2.25 --- u_main.tk 17 Oct 2007 17:46:34 -0000 1.17.2.26 *************** *** 412,416 **** if {[string length $browser]} { puts stderr [format "%s %s" $browser $filename] ! exec sh -c [format "%s %s" $browser $filename] break } --- 412,416 ---- if {[string length $browser]} { puts stderr [format "%s %s" $browser $filename] ! exec -- sh -c [format "%s %s" $browser $filename] & break }