This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.28.9000-84-gb35d350


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  b35d3509caee04b2e196bb832138e4e4042347db (commit)
      from  debc4c9870dcf9f495561d3f7d8afd52878fecf0 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=b35d3509caee04b2e196bb832138e4e4042347db

commit b35d3509caee04b2e196bb832138e4e4042347db
Author: Paul Eggert <eggert@cs.ucla.edu>
Date:   Wed Aug 22 17:46:32 2018 -0700

    regex: port Gnulib code to z/OS POSIX environment
    
    Problem reported by Arnold Robbins in:
    https://lists.gnu.org/r/bug-gnulib/2018-08/msg00129.html
    * posix/regex_internal.h (__iswalnum, __towlower, __towupper) [!_LIBC]:
    Undef.

diff --git a/ChangeLog b/ChangeLog
index 923f1f1..39c6bf5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2018-08-22  Paul Eggert  <eggert@cs.ucla.edu>
+
+	regex: port Gnulib code to z/OS POSIX environment
+	Problem reported by Arnold Robbins in:
+	https://lists.gnu.org/r/bug-gnulib/2018-08/msg00129.html
+	* posix/regex_internal.h (__iswalnum, __towlower, __towupper) [!_LIBC]:
+	Undef.
+
 2018-08-22  Joseph Myers  <joseph@codesourcery.com>
 
 	* math/test-double-vlen2.h: Don't include <math-tests-rounding.h>.
diff --git a/posix/regex_internal.h b/posix/regex_internal.h
index 3b836ed..c788066 100644
--- a/posix/regex_internal.h
+++ b/posix/regex_internal.h
@@ -149,7 +149,10 @@
 /* Rename to standard API for using out of glibc.  */
 #ifndef _LIBC
 # undef __wctype
+# undef __iswalnum
 # undef __iswctype
+# undef __towlower
+# undef __towupper
 # define __wctype wctype
 # define __iswalnum iswalnum
 # define __iswctype iswctype

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog              |    8 ++++++++
 posix/regex_internal.h |    3 +++
 2 files changed, 11 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]