[GRASS-SVN] r37707 - grass/branches/releasebranch_6_4/lib/init

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Jun 2 19:20:58 EDT 2009


Author: hamish
Date: 2009-06-02 19:20:57 -0400 (Tue, 02 Jun 2009)
New Revision: 37707

Modified:
   grass/branches/releasebranch_6_4/lib/init/init.bat
Log:
patch from jef for osgeo bug # 83 (can't access terminal until tcltk gui exit; merge from devbr6)

Modified: grass/branches/releasebranch_6_4/lib/init/init.bat
===================================================================
--- grass/branches/releasebranch_6_4/lib/init/init.bat	2009-06-02 19:49:53 UTC (rev 37706)
+++ grass/branches/releasebranch_6_4/lib/init/init.bat	2009-06-02 23:20:57 UTC (rev 37707)
@@ -108,12 +108,14 @@
 rem if return ok, gis.m start:
 if %errorlevel% == 2 goto exitinit
 
+rem Does line 42 above mean that GRASS_WISH will always be set?
 if not "%GRASS_WISH%"=="" (
-	"%GRASS_WISH%" "%WINGISBASE%\etc\gm\gm.tcl"
+	start /b "GRASS Tcl/Tk" "%GRASS_WISH%" "%WINGISBASE%\etc\gm\gm.tcl"
 ) else (
-	"%WINGISBASE%\etc\gm\gm.tcl"
+	start /b "GRASS Tcl/Tk" "%WINGISBASE%\etc\gm\gm.tcl"
 )
 
+rem Will redirecting output to NUL hide legitamite error messages, harming debugging?
 "%WINGISBASE%\etc\clean_temp" > NUL:
 
 goto exitinit



More information about the grass-commit mailing list