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.17-112-gaba5e59


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  aba5e59604da465adc6eb65b33a414dfc29904de (commit)
       via  e557e9e51927c46fda6a3e312efed23f403d6ff0 (commit)
       via  0428cec91e38b5f6970dece9fdde9027eff661d6 (commit)
      from  32fcb36dbf4f729d0b0e6d5c386fd1d68486463d (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://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=aba5e59604da465adc6eb65b33a414dfc29904de

commit aba5e59604da465adc6eb65b33a414dfc29904de
Author: Mike Frysinger <vapier@gentoo.org>
Date:   Fri Dec 21 00:03:17 2012 -0500

    manual: glob flags: fix sorting order
    
    Reviewed-by: Carlos O'Donell <carlos@systemhalted.org>
    Signed-off-by: Mike Frysinger <vapier@gentoo.org>

diff --git a/ChangeLog b/ChangeLog
index 55c36f2..68b5d32 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2013-01-13  Mike Frysinger  <vapier@gentoo.org>
 
+	* manual/pattern.texi (Flags for Globbing): Move GLOB_NOSORT after
+	GLOB_NOESCAPE.
+
+2013-01-13  Mike Frysinger  <vapier@gentoo.org>
+
 	* manual/pattern.texi (Flags for Globbing): Highlight GNU extensions.
 
 2013-01-13  Mike Frysinger  <vapier@gentoo.org>
diff --git a/manual/pattern.texi b/manual/pattern.texi
index 60e9dc8..1966f3f 100644
--- a/manual/pattern.texi
+++ b/manual/pattern.texi
@@ -495,13 +495,6 @@ matches.)
 
 @comment glob.h
 @comment POSIX.2
-@item GLOB_NOSORT
-Don't sort the file names; return them in no particular order.
-(In practice, the order will depend on the order of the entries in
-the directory.)  The only reason @emph{not} to sort is to save time.
-
-@comment glob.h
-@comment POSIX.2
 @item GLOB_NOESCAPE
 Don't treat the @samp{\} character specially in patterns.  Normally,
 @samp{\} quotes the following character, turning off its special meaning
@@ -514,6 +507,13 @@ If you use @code{GLOB_NOESCAPE}, then @samp{\} is an ordinary character.
 @code{glob} does its work by calling the function @code{fnmatch}
 repeatedly.  It handles the flag @code{GLOB_NOESCAPE} by turning on the
 @code{FNM_NOESCAPE} flag in calls to @code{fnmatch}.
+
+@comment glob.h
+@comment POSIX.2
+@item GLOB_NOSORT
+Don't sort the file names; return them in no particular order.
+(In practice, the order will depend on the order of the entries in
+the directory.)  The only reason @emph{not} to sort is to save time.
 @end vtable
 
 @node More Flags for Globbing

http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=e557e9e51927c46fda6a3e312efed23f403d6ff0

commit e557e9e51927c46fda6a3e312efed23f403d6ff0
Author: Mike Frysinger <vapier@gentoo.org>
Date:   Fri Dec 21 00:02:06 2012 -0500

    manual: glob flags: mention the GNU extensions
    
    The glob flags page reads as if this section is comprehensive when it
    is not -- a lot of GNU extensions exist.  Point that out in the intro.
    
    Reviewed-by: Carlos O'Donell <carlos@systemhalted.org>
    Signed-off-by: Mike Frysinger <vapier@gentoo.org>

diff --git a/ChangeLog b/ChangeLog
index 5200a48..55c36f2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2013-01-13  Mike Frysinger  <vapier@gentoo.org>
 
+	* manual/pattern.texi (Flags for Globbing): Highlight GNU extensions.
+
+2013-01-13  Mike Frysinger  <vapier@gentoo.org>
+
 	* manual/pattern.texi (glob_t): Document gl_flags.
 	(glob64_t): Likewise.
 
diff --git a/manual/pattern.texi b/manual/pattern.texi
index ef781ad..60e9dc8 100644
--- a/manual/pattern.texi
+++ b/manual/pattern.texi
@@ -420,10 +420,12 @@ This function is a GNU extension.
 @node Flags for Globbing
 @subsection Flags for Globbing
 
-This section describes the flags that you can specify in the
+This section describes the standard flags that you can specify in the
 @var{flags} argument to @code{glob}.  Choose the flags you want,
 and combine them with the C bitwise OR operator @code{|}.
 
+Note that there are @ref{More Flags for Globbing} available as GNU extensions.
+
 @vtable @code
 @comment glob.h
 @comment POSIX.2

http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=0428cec91e38b5f6970dece9fdde9027eff661d6

commit 0428cec91e38b5f6970dece9fdde9027eff661d6
Author: Mike Frysinger <vapier@gentoo.org>
Date:   Thu Dec 20 23:59:42 2012 -0500

    manual: glob: document the gl_flags field
    
    The More Flags for Globbing section indirectly mentions gl_flags when
    talking about GLOB_MAGCHAR.  Mention it explicitly when covering the
    glob_t types.
    
    Reviewed-by: Carlos O'Donell <carlos@systemhalted.org>
    Signed-off-by: Mike Frysinger <vapier@gentoo.org>

diff --git a/ChangeLog b/ChangeLog
index 33cc724..5200a48 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-01-13  Mike Frysinger  <vapier@gentoo.org>
+
+	* manual/pattern.texi (glob_t): Document gl_flags.
+	(glob64_t): Likewise.
+
 2013-01-11  David S. Miller  <davem@davemloft.net>
 
 	* math/Makefile: Recognize gmp-sysdep_routines.
diff --git a/manual/pattern.texi b/manual/pattern.texi
index 28b1d74..ef781ad 100644
--- a/manual/pattern.texi
+++ b/manual/pattern.texi
@@ -234,6 +234,12 @@ is set in the flag parameter.  The type of this field is @code{@w{int
 (*) (const char *,} @w{struct stat *)}}.
 
 This is a GNU extension.
+
+@item gl_flags
+The flags used when @code{glob} was called.  In addition, @code{GLOB_MAGCHAR}
+might be set.  See @ref{Flags for Globbing} for more details.
+
+This is a GNU extension.
 @end table
 @end deftp
 
@@ -312,6 +318,12 @@ is set in the flag parameter.  The type of this field is @code{@w{int
 (*) (const char *,} @w{struct stat64 *)}}.
 
 This is a GNU extension.
+
+@item gl_flags
+The flags used when @code{glob} was called.  In addition, @code{GLOB_MAGCHAR}
+might be set.  See @ref{Flags for Globbing} for more details.
+
+This is a GNU extension.
 @end table
 @end deftp
 

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

Summary of changes:
 ChangeLog           |   14 ++++++++++++++
 manual/pattern.texi |   30 ++++++++++++++++++++++--------
 2 files changed, 36 insertions(+), 8 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]