Index: /issm/trunk-jpl/scripts/ol.m
===================================================================
--- /issm/trunk-jpl/scripts/ol.m	(revision 18818)
+++ /issm/trunk-jpl/scripts/ol.m	(revision 18819)
@@ -1,14 +1,14 @@
 
-	fid=fopen('runme.m','r');
-	
+fid=fopen('runme.m','r');
+
+tline = fgets(fid);
+count=1;
+while ischar(tline)
 	tline = fgets(fid);
-	count=1;
-	while ischar(tline)
-		tline = fgets(fid);
-		if length(tline)>16,
-			if strcmpi(tline(1:16),'if perform(org,'''),
-				disp(sprintf('%i: %s',count,tline(17:end-5)));
-				count=count+1;
-			end
+	if length(tline)>16,
+		if strcmpi(tline(1:16),'if perform(org,'''),
+			disp(sprintf('%i: %s',count,tline(17:end-8)));
+			count=count+1;
 		end
 	end
+end
