Index: tests/collections/.expect/string-ostream.txt
===================================================================
--- tests/collections/.expect/string-ostream.txt	(revision 3bfa80f8617d6b54dd1bf0bc96e1a0e9b68cc5be)
+++ tests/collections/.expect/string-ostream.txt	(revision 244335bac9fe48993091c4a55d03642bd67e9a62)
@@ -1,5 +1,5 @@
 string
-abcd "abcd"     abcd   "abcd"   abcd abcd     "abcd"  
-abcd "abcd"     abcd   "abcd"   abcd abcd     "abcd"  
+abcd "abcd"     abcd   "abcd"   'abcd'   <abcd>   abcd abcd     "abcd"  
+abcd "abcd"     abcd   "abcd"   'abcd'   <abcd>   abcd abcd     "abcd"  
 141 142 143 144 0141 0142 0143 0144      141      142      143      144 0141     0142     0143     0144    
 141 142 143 144 0141 0142 0143 0144      141      142      143      144 0141     0142     0143     0144    
Index: tests/collections/string-ostream.cfa
===================================================================
--- tests/collections/string-ostream.cfa	(revision 3bfa80f8617d6b54dd1bf0bc96e1a0e9b68cc5be)
+++ tests/collections/string-ostream.cfa	(revision 244335bac9fe48993091c4a55d03642bd67e9a62)
@@ -8,6 +8,6 @@
 // Created On       : Sat May  2 18:02:34 2026
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sat May  2 19:06:22 2026
-// Update Count     : 7
+// Last Modified On : Sun May  3 23:31:07 2026
+// Update Count     : 8
 // 
 
@@ -18,7 +18,9 @@
 	sout | "string";
 	const char * cs = "abcd";
-	sout | cs | quote( cs ) | wd(8,cs) | quote(wd(8,cs)) | wd(6,8,cs) | left(wd(8,cs)) | quote(left(wd(8,cs)));
+	sout | cs | quote(cs) | wd(8,cs) | quote(wd(8,cs)) | quote(wd(8,cs), '\'')| quote(wd(8,cs), '<', '>')
+		 | wd(6,8,cs) | left(wd(8,cs)) | quote(left(wd(8,cs)));
 	string s = "abcd";
-	sout | s | quote( s ) | wd(8,s) | quote(wd(8,s)) | wd(6,8,s) | left(wd(8,s)) | quote(left(wd(8,s)));
+	sout | s | quote(s) | wd(8,s) | quote(wd(8,s)) | quote(wd(8,s), '\'')| quote(wd(8,s), '<', '>')
+		 | wd(6,8,s) | left(wd(8,s)) | quote(left(wd(8,s)));
 
 	sout | nobase(oct(cs)) | upcase(oct(cs)) | nobase(wd(8,oct(cs))) | left(wd(-8,oct(cs)));
