Index: /issm/trunk-jpl/src/m/mesh/planet/gmsh/gmshplanet.m
===================================================================
--- /issm/trunk-jpl/src/m/mesh/planet/gmsh/gmshplanet.m	(revision 25121)
+++ /issm/trunk-jpl/src/m/mesh/planet/gmsh/gmshplanet.m	(revision 25122)
@@ -16,9 +16,9 @@
 
 	% Get Gmsh version
-	[s,r]=system(['gmsh -info | grep ''Version'' | sed -e ''s/Version[[:blank:]]*:[[:blank:]]//'' | cut -d ''.'' -f1'])
+	[s,r]=system(['gmsh -info | grep ''Version'' | sed -e ''s/Version[[:blank:]]*:[[:blank:]]//'' | cut -d ''.'' -f1']);
 	if s~=0,
 		error(r);
 	end
-	gmshmajorversion=str2num(r)
+	gmshmajorversion=str2num(r);
 	if ~ismember([3,4],gmshmajorversion),
 		error(['gmshplanet: Gmsh major version ' gmshmajorversion ' not supported!']);
@@ -139,7 +139,7 @@
 	%
 	if  exist(options,'refine'),
-		system([gmshpath ' -v 0 -tol 1e-8 -2 -format msh2 sphere.geo -bgm sphere.pos']);
+		system([gmshpath ' -tol 1e-8 -2 -format msh2 sphere.geo -bgm sphere.pos']);
 	else
-		system([gmshpath ' -v 0 -tol 1e-8 -2 -format msh2 sphere.geo']);
+		system([gmshpath ' -tol 1e-8 -2 -format msh2 sphere.geo']);
 	end
 
Index: /issm/trunk-jpl/src/m/mesh/planet/gmsh/gmshplanet.py
===================================================================
--- /issm/trunk-jpl/src/m/mesh/planet/gmsh/gmshplanet.py	(revision 25121)
+++ /issm/trunk-jpl/src/m/mesh/planet/gmsh/gmshplanet.py	(revision 25122)
@@ -129,7 +129,7 @@
     #
     if options.exist('refine'):
-        subprocess.call('gmsh -v 0 -tol 1e-8 -2 -format msh2 sphere.geo -bgm sphere.pos', shell=True)
+        subprocess.call('gmsh -tol 1e-8 -2 -format msh2 sphere.geo -bgm sphere.pos', shell=True)
     else:
-        subprocess.call('gmsh -v 0 -tol 1e-8 -2 -format msh2 sphere.geo', shell=True)
+        subprocess.call('gmsh -tol 1e-8 -2 -format msh2 sphere.geo', shell=True)
 
     #import mesh:  {{{
