From: Rainer Orth Date: Mon, 15 Jul 2002 20:25:40 +0000 (+0000) Subject: ctype_base.h (ctype_base): Fix print to match vendor . X-Git-Tag: releases/gcc-3.1.1~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=edb9186f09bbdaeea246f57953bd007f4e0177d3;p=thirdparty%2Fgcc.git ctype_base.h (ctype_base): Fix print to match vendor . * config/os/solaris/solaris2.5/bits/ctype_base.h (ctype_base): Fix print to match vendor . From-SVN: r55464 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 786797830cd1..dcd894e7fdbd 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2002-07-15 Rainer Orth + + * config/os/solaris/solaris2.5/bits/ctype_base.h (ctype_base): Fix + print to match vendor . + 2002-07-03 Steev Wilcox PR libstdc++/7057 diff --git a/libstdc++-v3/config/os/solaris/solaris2.5/bits/ctype_base.h b/libstdc++-v3/config/os/solaris/solaris2.5/bits/ctype_base.h index ad2babdb338c..d4f3fe75e696 100644 --- a/libstdc++-v3/config/os/solaris/solaris2.5/bits/ctype_base.h +++ b/libstdc++-v3/config/os/solaris/solaris2.5/bits/ctype_base.h @@ -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;