Index: /issm/trunk-jpl/src/m/classes/SMBforcing.js
===================================================================
--- /issm/trunk-jpl/src/m/classes/SMBforcing.js	(revision 20842)
+++ /issm/trunk-jpl/src/m/classes/SMBforcing.js	(revision 20843)
@@ -65,6 +65,8 @@
     }//}}}
 	//properties 
+    // {{{
 	this.mass_balance = NaN;
 	this.requested_outputs      = [];
 	this.setdefaultparameters();
+    // }}}
 }
Index: /issm/trunk-jpl/src/m/classes/mesh3dprisms.js
===================================================================
--- /issm/trunk-jpl/src/m/classes/mesh3dprisms.js	(revision 20842)
+++ /issm/trunk-jpl/src/m/classes/mesh3dprisms.js	(revision 20843)
@@ -5,5 +5,5 @@
 
 function mesh3dprisms() {
-		this.setdefaultparameters = function() { // [[[)
+		this.setdefaultparameters = function() { //{{{
 
 			//the connectivity is the averaged number of nodes linked to a
@@ -13,7 +13,7 @@
 			//trunk/test/Miscellaneous/runme.m
 			this.average_vertex_connectivity=25;
-		} // ]]]
+		} // }}}
 
-		this.checkconsistency = function(md,solution,analyses) { // [[[)
+		this.checkconsistency = function(md,solution,analyses) { // {{{
 
 			checkfield(md,'fieldname','mesh.x','NaN',1,'Inf',1,'size',[md.mesh.numberofvertices, 1]);
@@ -35,6 +35,6 @@
 			checkfield(md,'fieldname','mesh.z','<=',md.geometry.surface+Math.pow(10, -10),'message','\'mesh.z\' higher than surface elevation');
 			checkfield(md,'fieldname','mesh.average_vertex_connectivity','>=',24,'message','\'mesh.average_vertex_connectivity\' should be at least 24 in 3d');
-		} // ]]]
-		function disp() { // [[[
+		} // }}}
+		this.disp = function() { // {{{
 			console.log(sprintf('   3D prism Mesh:')); 
 
@@ -76,6 +76,6 @@
 			fielddisplay(this,'long','vertices longitude [degrees]');
 			fielddisplay(this,'epsg','EPSG code (ex: 3413 for UPS Greenland, 3031 for UPS Antarctica)');
-		} // ]]]
-		function marshall(md,prefix,fid) { // [[[
+		} // }}}
+		this.marshall = function(md,prefix,fid) { // {{{
 			WriteData(fid,prefix,'enum',DomainTypeEnum(),'data',StringToEnum(['Domain' + this.domaintype()]),'format','Integer');
 			WriteData(fid,prefix,'enum',DomainDimensionEnum(),'data',this.dimension(),'format','Integer');
@@ -96,5 +96,5 @@
 			WriteData(fid,prefix,'object',this,'class','mesh','fieldname','numberofvertices2d','format','Integer');
 			WriteData(fid,prefix,'object',this,'class','mesh','fieldname','numberofelements2d','format','Integer');
-		} // ]]]
+		} // }}}
         this.fix=function() { //{{{
             //Transform objects into Float64Arrays:
@@ -111,18 +111,19 @@
             this.long=NaNFix(this.long,NaN);
         }//}}}
-		this.domaintype = function() { // [[[)
+		this.domaintype = function() { // {{{
 			return '3D';
-		} // ]]]
-		this.dimension = function() { // [[[)
+		} // }}}
+		this.dimension = function() { // {{{
 			return 3;
-		} // ]]]
-		this.elementtype = function() { // [[[)
+		} // }}}
+		this.elementtype = function() { // {{{
 			return 'Penta';
-		} // ]]]
+		} // }}}
         this.classname = function () { //{{{
             return "mesh3dprisms";
         } //}}}
 
-        //properties (SetAccess=public) 
+        //properties
+        //{{{
         this.x                           = NaN;
         this.y                           = NaN;
@@ -157,3 +158,4 @@
         this.extractedvertices           = NaN;
         this.extractedelements           = NaN;
+        //}}}
 }
