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.14-353-gf2282d4


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  f2282d42b49dcae001c269aeed4d9dbf74c5ca63 (commit)
      from  714fad23c6f546c16a3f975cac984384a592537b (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=f2282d42b49dcae001c269aeed4d9dbf74c5ca63

commit f2282d42b49dcae001c269aeed4d9dbf74c5ca63
Author: Roland McGrath <roland@hack.frob.com>
Date:   Thu Oct 13 09:49:28 2011 -0700

    BZ#13291: Manual typo fix for strverscmp.

diff --git a/ChangeLog b/ChangeLog
index 9e61f35..89611bd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-10-13  Roland McGrath  <roland@hack.frob.com>
+
+	[BZ #13291]
+	* manual/string.texi (String/Array Comparison): Typo fix in strverscmp.
+
 2011-10-13  Andreas Schwab  <schwab@redhat.com>
 
 	* sysdeps/x86_64/fpu/fraiseexcpt.c: Add __feraiseexcept alias.
diff --git a/manual/string.texi b/manual/string.texi
index 2fe6039..f7d4ebe 100644
--- a/manual/string.texi
+++ b/manual/string.texi
@@ -1249,10 +1249,10 @@ strncmp ("hello, world", "hello, stupid world!!!", 5)
 @comment GNU
 @deftypefun int strverscmp (const char *@var{s1}, const char *@var{s2})
 The @code{strverscmp} function compares the string @var{s1} against
-@var{s2}, considering them as holding indices/version numbers.  Return
-value follows the same conventions as found in the @code{strverscmp}
-function.  In fact, if @var{s1} and @var{s2} contain no digits,
-@code{strverscmp} behaves like @code{strcmp}.
+@var{s2}, considering them as holding indices/version numbers.  The
+return value follows the same conventions as found in the
+@code{strcmp} function.  In fact, if @var{s1} and @var{s2} contain no
+digits, @code{strverscmp} behaves like @code{strcmp}.
 
 Basically, we compare strings normally (character by character), until
 we find a digit in each string - then we enter a special comparison

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

Summary of changes:
 ChangeLog          |    5 +++++
 manual/string.texi |    8 ++++----
 2 files changed, 9 insertions(+), 4 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]