From 8470a9eda6b5912c65194ad3602a2d9006da1bd1 Mon Sep 17 00:00:00 2001
From: curt <curt>
Date: Fri, 16 Oct 1998 00:50:56 +0000
Subject: [PATCH] Remove leading _ from a couple defines.

---
 Misc/fgstream.hxx | 5 ++++-
 Misc/strutils.hxx | 5 ++++-
 Misc/zfstream.hxx | 2 +-
 3 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/Misc/fgstream.hxx b/Misc/fgstream.hxx
index 1e79e5b3f..4925d9558 100644
--- a/Misc/fgstream.hxx
+++ b/Misc/fgstream.hxx
@@ -35,7 +35,7 @@
 #include <string>
 
 #include "Include/fg_stl_config.h"
-_FG_USING_NAMESPACE(std);
+FG_USING_NAMESPACE(std);
 
 #include "zfstream.hxx"
 
@@ -105,6 +105,9 @@ istream& skipcomment( istream& in );
 #endif /* _FGSTREAM_HXX */
 
 // $Log$
+// Revision 1.4  1998/10/16 00:50:56  curt
+// Remove leading _ from a couple defines.
+//
 // Revision 1.3  1998/10/13 00:10:06  curt
 // More portability changes to help with windoze compilation problems.
 //
diff --git a/Misc/strutils.hxx b/Misc/strutils.hxx
index 7acd7f9b4..2cf7c53e9 100644
--- a/Misc/strutils.hxx
+++ b/Misc/strutils.hxx
@@ -29,7 +29,7 @@
 #include <stdlib.h>
 
 #include "Include/fg_stl_config.h"
-_FG_USING_NAMESPACE(std);
+FG_USING_NAMESPACE(std);
 
 // Default characters to remove.
 extern const string whitespace;
@@ -60,6 +60,9 @@ atoi( const string& str )
 #endif // STRUTILS_H
 
 // $Log$
+// Revision 1.3  1998/10/16 00:50:57  curt
+// Remove leading _ from a couple defines.
+//
 // Revision 1.2  1998/10/13 00:10:07  curt
 // More portability changes to help with windoze compilation problems.
 //
diff --git a/Misc/zfstream.hxx b/Misc/zfstream.hxx
index a5b02013c..52eec8ece 100644
--- a/Misc/zfstream.hxx
+++ b/Misc/zfstream.hxx
@@ -93,7 +93,7 @@ public:
 };
 
 template<class T> class gzomanip {
-    friend gzofstream &operator << _FG_NULL_TMPL_ARGS (gzofstream &, const gzomanip<T> &);
+    friend gzofstream &operator << FG_NULL_TMPL_ARGS (gzofstream &, const gzomanip<T> &);
 public:
   gzomanip(gzofstream &(*f)(gzofstream &, T), T v) : func(f), val(v) { }
 private: