]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
ctype_base.h (ctype_base): Fix print to match vendor <ctype.h>.
authorRainer Orth <ro@TechFak.Uni-Bielefeld.DE>
Mon, 15 Jul 2002 20:23:38 +0000 (20:23 +0000)
committerRainer Orth <ro@gcc.gnu.org>
Mon, 15 Jul 2002 20:23:38 +0000 (20:23 +0000)
* config/os/solaris/solaris2.5/ctype_base.h (ctype_base): Fix
print to match vendor <ctype.h>.

From-SVN: r55463

libstdc++-v3/ChangeLog
libstdc++-v3/config/os/solaris/solaris2.5/ctype_base.h

index 4e6465c6e36ac5c0391444cdddad565f5fdbc65a..81c0cb8089f55ac00d75c421e93dc9e21fff2b7c 100644 (file)
@@ -1,3 +1,8 @@
+2002-07-15  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
+
+       * config/os/solaris/solaris2.5/ctype_base.h (ctype_base): Fix
+       print to match vendor <ctype.h>.
+
 2002-07-15  Phil Edwards  <pme@gcc.gnu.org>
 
        * docs/html/faq/index.html:  Fix download links.
index ad2babdb338cb8515d12d1a8dbc79719ef7f9b9f..d4f3fe75e69600a9e11b79155e968b1d3fab9f0c 100644 (file)
@@ -1,6 +1,6 @@
 // Locale support -*- C++ -*-
 
-// Copyright (C) 1997-1999, 2000 Free Software Foundation, Inc.
+// Copyright (C) 1997-1999, 2000, 2002 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the
@@ -47,7 +47,7 @@
     static const mask digit    = 04;
     static const mask xdigit   = 0200;
     static const mask space    = 010;
-    static const mask print    = 020 | 01 | 02 | 04 | 0200;
+    static const mask print    = 020 | 01 | 02 | 04 | 0100;
     static const mask graph    = 020 | 01 | 02 | 04;
     static const mask cntrl    = 040;
     static const mask punct    = 020;