Index: /issm/trunk-jpl/src/m/utils/Exp/readwrite/expread.m
===================================================================
--- /issm/trunk-jpl/src/m/utils/Exp/readwrite/expread.m	(revision 11954)
+++ /issm/trunk-jpl/src/m/utils/Exp/readwrite/expread.m	(revision 11955)
@@ -1,3 +1,3 @@
-function Struct=expread(filename,whole);
+function Struct=expread(filename);
 %EXPREAD - read a file exp and build a Structure
 %
@@ -10,9 +10,9 @@
 %
 %   Usage:
-%      Struct=expread(filename,whole)
+%      Struct=expread(filename)
 %  
 %   Example:
 %      Struct=expread('domainoutline.exp')
-%      Struct=expread('domainoutline.exp',1)
+%      Struct=expread('domainoutline.exp')
 %
 %   See also EXPDOC, EXPWRITEASVERTICES
@@ -21,7 +21,4 @@
 if ~exist(filename),
 	error(['expread error message: file ' filename ' not found!']);
-end
-if nargin<2,
-	whole=1;
 end
 
@@ -76,14 +73,7 @@
 	   (Struct(count).y(end) == Struct(count).y(1))
 		Struct(count).closed=true;
-		%skip last coordinate if whole=0,
-		if whole==0
-			Struct(count).nods=Struct(count).nods-1;
-			Struct(count).x   =Struct(count).x(1:end-1,1);
-			Struct(count).y   =Struct(count).y(1:end-1,1);
-		end
 	else
 		Struct(count).closed=false;
 	end
-
 end
 
