From 463cca40bd7721c1bf36f69371e45a43c06f3d42 Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Sun, 21 Jul 2013 19:30:19 +0000 Subject: [PATCH] * new-features.sgml (ov-new1.7.22): Add GetCommandLine and regcomp changes. --- winsup/doc/ChangeLog | 5 +++++ winsup/doc/new-features.xml | 11 +++++++++++ 2 files changed, 16 insertions(+) diff --git a/winsup/doc/ChangeLog b/winsup/doc/ChangeLog index 403c37e27..5fbe1be4f 100644 --- a/winsup/doc/ChangeLog +++ b/winsup/doc/ChangeLog @@ -1,3 +1,8 @@ +2013-07-21 Corinna Vinschen + + * new-features.sgml (ov-new1.7.22): Add GetCommandLine and regcomp + changes. + 2013-07-21 Corinna Vinschen * Makefile.in (cygwin-ug-net/cygwin-ug-net.html): Add dependency to diff --git a/winsup/doc/new-features.xml b/winsup/doc/new-features.xml index dccfdc8e2..5b7563973 100644 --- a/winsup/doc/new-features.xml +++ b/winsup/doc/new-features.xml @@ -13,6 +13,17 @@ Support for /dev/mem, /dev/kmem and /dev/port removed, since OS support was limited to 32 bit Windows XP only. + +Added cygwin GetCommandLine wrappers which will allow Cygwin programs to +(appear to) use the Windows command line functions. + + + +regcomp(3) now allows character values >= 0x80 if the current codeset is +ASCII (default codeset in the "C"/"POSIX" locale). This allows patterns +containing arbitrary byte values as GLibc's regcomp. + +