Index: /issm/trunk-jpl/src/m/mesh/planet/gmsh/gmshplanet.m
===================================================================
--- /issm/trunk-jpl/src/m/mesh/planet/gmsh/gmshplanet.m	(revision 23362)
+++ /issm/trunk-jpl/src/m/mesh/planet/gmsh/gmshplanet.m	(revision 23363)
@@ -23,5 +23,5 @@
 	resolution=getfieldvalue(options,'resolution')*1000;
 
-	%initialize mesh: 
+	%initialize mesh:
 	mesh=mesh3dsurface;
 
@@ -97,5 +97,5 @@
 		end
 		fprintf(fid,'};\n');
-		
+
 		fclose(fid);
 		% }}}
@@ -112,5 +112,5 @@
 	end
 	if isempty(gmshpath),
-		error('gmt not found, make sure it is properly installed');
+		error('gmsh not found, make sure it is properly installed');
 	end
 
@@ -161,20 +161,20 @@
 	mesh.numberofelements=fscanf(fid,'%i',1);
 	A=fscanf(fid,'%i %i %i %i %i %i %i %i',[8 mesh.numberofelements]);
-	mesh.elements=A(6:8,:)'; 
+	mesh.elements=A(6:8,:)';
 	A=fscanf(fid,'%s',1);
 	if ~strcmp(A,'$EndElements'),
 		error(['Expecting $EndElements (' A ')']);
 	end
-	fclose(fid); 
+	fclose(fid);
 	%}}}
 
-	%figure out other fields in mesh3dsurface: 
+	%figure out other fields in mesh3dsurface:
 	mesh.r=sqrt(mesh.x.^2+mesh.y.^2+mesh.z.^2);
 	mesh.lat = asin(mesh.z./mesh.r)/pi*180;
 	mesh.long = atan2(mesh.y,mesh.x)/pi*180;
 
-	%erase files: 
+	%erase files:
 	system('rm -rf sphere.geo sphere.msh sphere.pos');
 
-	%return mesh: 
+	%return mesh:
 	return;
