Index: /issm/trunk-jpl/src/c/toolkits/petsc/patches/PetscOptionsInsertMultipleString.cpp
===================================================================
--- /issm/trunk-jpl/src/c/toolkits/petsc/patches/PetscOptionsInsertMultipleString.cpp	(revision 13570)
+++ /issm/trunk-jpl/src/c/toolkits/petsc/patches/PetscOptionsInsertMultipleString.cpp	(revision 13571)
@@ -59,5 +59,5 @@
 			/*Reduce first to bare option value*/
 			PetscStrlen(first,&len);
-			while (len > 0 && (first[len-1] == ' ' || first[len-1] == 'n')) {
+			while (len > 0 && first[len-1] == ' ') {
 				len--; first[len] = 0;
 			}
@@ -70,5 +70,5 @@
 				/*Second is another option, ignore it*/
 				PetscStrlen(first,&len);
-				while (len > 0 && (first[len-1] == ' ' || first[len-1] == 'n')) {
+				while (len > 0 && first[len-1] == ' ' ) {
 					len--; first[len] = 0;
 				}
@@ -81,5 +81,5 @@
 				/*Second is 'first' option's value*/
 				PetscStrlen(second,&len);
-				while (len > 0 && (second[len-1] == ' ' || second[len-1] == 'n')) {
+				while (len > 0 && second[len-1] == ' ') {
 					len--; second[len] = 0;
 				}
