Index: /issm/trunk-jpl/src/m/model/setflowequation.m
===================================================================
--- /issm/trunk-jpl/src/m/model/setflowequation.m	(revision 12958)
+++ /issm/trunk-jpl/src/m/model/setflowequation.m	(revision 12959)
@@ -135,11 +135,11 @@
 		%rule out elements that don't touch the 2 boundaries
 		pos=find(macayealpattynflag);
-		list=zeros(length(pos),1);
-		list = list + any(sum(nodeonmacayeal(md.mesh.elements(pos,:)),2),2);
-		list = list - any(sum(nodeonpattyn(md.mesh.elements(pos,:))  ,2),2);
-		pos1=find(list==1);
+		elist=zeros(length(pos),1);
+		elist = elist + any(sum(nodeonmacayeal(md.mesh.elements(pos,:)),2),2);
+		elist = elist - any(sum(nodeonpattyn(md.mesh.elements(pos,:))  ,2),2);
+		pos1=find(elist==1);
 		macayealflag(pos(pos1))=1;
 		macayealpattynflag(pos(pos1))=0;
-		pos2=find(list==-1);
+		pos2=find(elist==-1);
 		pattynflag(pos(pos2))=1;
 		macayealpattynflag(pos(pos2))=0;
@@ -167,11 +167,11 @@
 		%rule out elements that don't touch the 2 boundaries
 		pos=find(pattynstokesflag);
-		list=zeros(length(pos),1);
-		list = list + any(sum(nodeonstokes(md.mesh.elements(pos,:)),2),2);
-		list = list - any(sum(nodeonpattyn(md.mesh.elements(pos,:)),2),2);
-		pos1=find(list==1);
+		elist=zeros(length(pos),1);
+		elist = elist + any(sum(nodeonstokes(md.mesh.elements(pos,:)),2),2);
+		elist = elist - any(sum(nodeonpattyn(md.mesh.elements(pos,:)),2),2);
+		pos1=find(elist==1);
 		stokesflag(pos(pos1))=1;
 		pattynstokesflag(pos(pos1))=0;
-		pos2=find(list==-1);
+		pos2=find(elist==-1);
 		pattynflag(pos(pos2))=1;
 		pattynstokesflag(pos(pos2))=0;
@@ -199,11 +199,11 @@
 		%rule out elements that don't touch the 2 boundaries
 		pos=find(macayealstokesflag);
-		list=zeros(length(pos),1);
-		list = list + any(sum(nodeonmacayeal(md.mesh.elements(pos,:)),2),2);
-		list = list - any(sum(nodeonstokes(md.mesh.elements(pos,:))  ,2),2);
-		pos1=find(list==1);
+		elist=zeros(length(pos),1);
+		elist = elist + any(sum(nodeonmacayeal(md.mesh.elements(pos,:)),2),2);
+		elist = elist - any(sum(nodeonstokes(md.mesh.elements(pos,:))  ,2),2);
+		pos1=find(elist==1);
 		macayealflag(pos(pos1))=1;
 		macayealstokesflag(pos(pos1))=0;
-		pos2=find(list==-1);
+		pos2=find(elist==-1);
 		stokesflag(pos(pos2))=1;
 		macayealstokesflag(pos(pos2))=0;
Index: /issm/trunk-jpl/test/NightlyRun/runme.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/runme.m	(revision 12958)
+++ /issm/trunk-jpl/test/NightlyRun/runme.m	(revision 12959)
@@ -72,11 +72,11 @@
 % }}}
 %GET ids  {{{1
-list=dir;%use dir, as it seems to act OS independent
+flist=dir;%use dir, as it seems to act OS independent
 list_ids=[];
-for i=1:numel(list),
-	if ( strncmp(list(i).name,'test',4) &...                         %File name must start with 'test'
-			strncmp(fliplr(list(i).name),fliplr('.m'),2)&...           %File name must end by '.m'
-			~strcmp(list(i).name,'test.m'))                            %File name must be different than 'test.m'
-		list_ids(end+1)=eval(list(i).name(5:end-2));                  %Keep test id only (skip 'test' and '.m')
+for i=1:numel(flist),
+	if ( strncmp(flist(i).name,'test',4) &...                         %File name must start with 'test'
+			strncmp(fliplr(flist(i).name),fliplr('.m'),2)&...           %File name must end by '.m'
+			~strcmp(flist(i).name,'test.m'))                            %File name must be different than 'test.m'
+		list_ids(end+1)=eval(flist(i).name(5:end-2));                  %Keep test id only (skip 'test' and '.m')
 	end
 end
