Index: tests/loopctrl.cfa
===================================================================
--- tests/loopctrl.cfa	(revision 5ea5b28f99a21543ee16545ccb212eddbb550eff)
+++ tests/loopctrl.cfa	(revision ef346f7cc43b1b67ca3fa5de124271b9c9ac2453)
@@ -10,6 +10,6 @@
 // Created On       : Wed Aug  8 18:32:59 2018
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sat Dec 22 09:41:15 2018
-// Update Count     : 77
+// Last Modified On : Sun Dec 23 23:00:29 2018
+// Update Count     : 79
 // 
 
@@ -32,5 +32,5 @@
 S ?-=?( S & t, one_t ) { t.i -= 1; t.j -= 1; return t; }
 ofstream & ?|?( ofstream & os, S v ) { return os | '(' | v.i | v.j | ')'; }
-void & ?|?( ofstream & os, S v ) { (ofstream)(os | v); if ( getANL( os ) ) nl( os ); }
+void & ?|?( ofstream & os, S v ) { (ofstream &)(os | v); nl( os ); }
 
 int main() {
Index: tests/sum.cfa
===================================================================
--- tests/sum.cfa	(revision 5ea5b28f99a21543ee16545ccb212eddbb550eff)
+++ tests/sum.cfa	(revision ef346f7cc43b1b67ca3fa5de124271b9c9ac2453)
@@ -11,6 +11,6 @@
 // Created On       : Wed May 27 17:56:53 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Dec 11 21:50:41 2018
-// Update Count     : 285
+// Last Modified On : Sun Dec 23 23:00:38 2018
+// Update Count     : 287
 //
 
@@ -93,5 +93,5 @@
 	S ?++( S & t ) { S temp = t; t += (S){1}; return temp; }
 	ofstream & ?|?( ofstream & os, S v ) { return os | v.i | v.j; }
-	void ?|?( ofstream & os, S v ) { (ofstream)(os | v); if ( getANL( os ) ) nl( os ); }
+	void ?|?( ofstream & os, S v ) { (ofstream &)(os | v); nl( os ); }
 
 	S s = (S){0}, a[size], v = { low, low };
Index: tests/swap.cfa
===================================================================
--- tests/swap.cfa	(revision 5ea5b28f99a21543ee16545ccb212eddbb550eff)
+++ tests/swap.cfa	(revision ef346f7cc43b1b67ca3fa5de124271b9c9ac2453)
@@ -10,6 +10,6 @@
 // Created On       : Wed May 27 17:56:53 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sat Dec 22 16:01:33 2018
-// Update Count     : 75
+// Last Modified On : Sun Dec 23 23:00:49 2018
+// Update Count     : 77
 //
 
@@ -85,5 +85,5 @@
 	struct S { int i, j; } s1 = { 1, 2 }, s2 = { 2, 1 };
 	ofstream & ?|?( ofstream & os, S s ) { return os | s.i | s.j; }
-	void ?|?( ofstream & os, S s ) { (ofstream)(os | s.i | s.j); if ( getANL( os ) ) nl( os ); }
+	void ?|?( ofstream & os, S s ) { (ofstream &)(os | s.i | s.j); nl( os ); }
 	sout | "struct S\t\t" | s1 | "," | s2 | "\t\tswap " | nonl;
 	swap( s1, s2 );
