This is the mail archive of the
libstdc++@sources.redhat.com
mailing list for the libstdc++ project.
Spelling patch for libstdc++-v3
- To: <gcc-patches at gcc dot gnu dot org>
- Subject: Spelling patch for libstdc++-v3
- From: "Joseph S. Myers" <jsm28 at cam dot ac dot uk>
- Date: Sun, 19 Nov 2000 20:35:50 +0000 (GMT)
- cc: <libstdc++ at sources dot redhat dot com>
This patch fixes spelling errors ("depricated" meaning "deprecated") in
libstdc++-v3. OK to commit?
Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/ChangeLog,v
retrieving revision 1.280
diff -u -r1.280 ChangeLog
--- ChangeLog 2000/11/19 02:22:53 1.280
+++ ChangeLog 2000/11/19 20:32:54
@@ -1,3 +1,8 @@
+2000-11-19 Joseph S. Myers <jsm28@cam.ac.uk>
+
+ * include/bits/c++config, include/bits/ios_base.h,
+ include/bits/std_streambuf.h: Correct spelling of "deprecated".
+
2000-11-18 Mark Mitchell <mark@codesourcery.com>
* libsupc++/exception_support.h: New header file.
Index: include/bits/c++config
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/bits/c++config,v
retrieving revision 1.5
diff -u -r1.5 c++config
--- c++config 2000/11/14 17:23:47 1.5
+++ c++config 2000/11/19 20:32:54
@@ -56,7 +56,7 @@
//#define _GLIBCPP_FULLY_COMPLIANT_HEADERS 1
// To enable older, ARM-style iostreams and other anachronisms use this.
-//#define _GLIBCPP_DEPRICATED 1
+//#define _GLIBCPP_DEPRECATED 1
// Use corrected code from the committee library group's issues list.
# define _GLIBCPP_RESOLVE_LIB_DEFECTS 1
Index: include/bits/ios_base.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/bits/ios_base.h,v
retrieving revision 1.1
diff -u -r1.1 ios_base.h
--- ios_base.h 2000/10/05 11:27:01 1.1
+++ ios_base.h 2000/11/19 20:32:54
@@ -204,7 +204,7 @@
static const seekdir cur = seekdir(SEEK_CUR);
static const seekdir end = seekdir(SEEK_END);
-#ifdef _GLIBCPP_DEPRICATED
+#ifdef _GLIBCPP_DEPRECATED
typedef int io_state;
typedef int open_mode;
typedef int seek_dir;
Index: include/bits/std_streambuf.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/bits/std_streambuf.h,v
retrieving revision 1.1
diff -u -r1.1 std_streambuf.h
--- std_streambuf.h 2000/10/05 11:27:01 1.1
+++ std_streambuf.h 2000/11/19 20:32:54
@@ -484,7 +484,7 @@
overflow(int_type /* __c */ = traits_type::eof())
{ return traits_type::eof(); }
-#ifdef _GLIBCPP_DEPRICATED
+#ifdef _GLIBCPP_DEPRECATED
public:
void
stossc()
--
Joseph S. Myers
jsm28@cam.ac.uk