Index: libcfa/src/containers/string_res.cfa
===================================================================
--- libcfa/src/containers/string_res.cfa	(revision f5d9c375ee9772424c2093334df7e1252c4d9076)
+++ libcfa/src/containers/string_res.cfa	(revision 7d25f441f46f87f370858dbcac73c01f4b7bc14f)
@@ -9,7 +9,7 @@
 // Author           : Michael L. Brooks
 // Created On       : Fri Sep 03 11:00:00 2021
-// Last Modified By : Michael L. Brooks
-// Last Modified On : Fri Sep 03 11:00:00 2021
-// Update Count     : 1
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Thu Jun 29 09:29:06 2023
+// Update Count     : 2
 //
 
@@ -204,5 +204,5 @@
         out | s[i];
     }
-    out | sep;
+    out | sepVal;
     // Re-apply newlines after done, for chaining version
     if (anl) nlOn(out);
Index: libcfa/src/gmp.hfa
===================================================================
--- libcfa/src/gmp.hfa	(revision f5d9c375ee9772424c2093334df7e1252c4d9076)
+++ libcfa/src/gmp.hfa	(revision 7d25f441f46f87f370858dbcac73c01f4b7bc14f)
@@ -10,6 +10,6 @@
 // Created On       : Tue Apr 19 08:43:43 2016
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Apr 20 20:59:21 2021
-// Update Count     : 32
+// Last Modified On : Thu Jun 29 09:43:30 2023
+// Update Count     : 33
 //
 
@@ -265,5 +265,5 @@
 			if ( sepPrt$( os ) ) fmt( os, "%s", sepGetCur$( os ) );
 			gmp_printf( "%Zd", mp.mpz );
-			sepOn( os );
+			sep( os );
 			return os;
 		} // ?|?
Index: libcfa/src/parseconfig.cfa
===================================================================
--- libcfa/src/parseconfig.cfa	(revision f5d9c375ee9772424c2093334df7e1252c4d9076)
+++ libcfa/src/parseconfig.cfa	(revision 7d25f441f46f87f370858dbcac73c01f4b7bc14f)
@@ -29,5 +29,5 @@
 // TODO: use string interface when it's ready (and implement exception msg protocol)
 [ void ] msg( * Missing_Config_Entries ex ) {
-	serr | "The config file is missing " | ex->num_missing | "entr" | sepOff | (ex->num_missing == 1 ? "y." : "ies.");
+	serr | "The config file is missing " | ex->num_missing | "entr" | nosep | (ex->num_missing == 1 ? "y." : "ies.");
 } // msg
 
