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.11-222-ge2f4aa5


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  e2f4aa547a997922d960876671fb35ea101295f8 (commit)
       via  82acaacb9c7689c479c3426743ae66d0ad466a1d (commit)
       via  bbf70ae9ce646540576f2b0cbc66b90da1511b0b (commit)
      from  34a407de9661ff8e938d152445b750becb247f7c (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=e2f4aa547a997922d960876671fb35ea101295f8

commit e2f4aa547a997922d960876671fb35ea101295f8
Author: Jim Meyering <meyering@redhat.com>
Date:   Wed Oct 29 11:05:39 2008 +0100

    manual: fix typo: s/are/is/
    
    * manual/math.texi (BSD Random): Fix a typo: s/are/is/

diff --git a/ChangeLog b/ChangeLog
index 5fd43b4..d541766 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2010-02-22  Jim Meyering  <meyering@redhat.com>

+	* manual/math.texi (BSD Random): Fix a typo: s/are/is/
+
 	* manual/charset.texi: Adjust grammar.

 	* manual/errno.texi (Error Messages): Fix doubled-words and typos.
diff --git a/manual/math.texi b/manual/math.texi
index 50e087c..95e3378 100644
--- a/manual/math.texi
+++ b/manual/math.texi
@@ -1421,7 +1421,7 @@ pseudo-random number generator.

 The GNU C library contains four additional functions which contain the
 state as an explicit parameter and therefore make it possible to handle
-thread-local PRNGs.  Beside this there are no difference.  In fact, the
+thread-local PRNGs.  Beside this there is no difference.  In fact, the
 four functions already discussed are implemented internally using the
 following interfaces.


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

commit 82acaacb9c7689c479c3426743ae66d0ad466a1d
Author: Jim Meyering <meyering@redhat.com>
Date:   Wed Jun 4 11:46:50 2008 +0200

    manual: adjust grammar
    
    * manual/charset.texi: Adjust grammar.

diff --git a/ChangeLog b/ChangeLog
index e9a86cc..5fd43b4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2010-02-22  Jim Meyering  <meyering@redhat.com>

+	* manual/charset.texi: Adjust grammar.
+
 	* manual/errno.texi (Error Messages): Fix doubled-words and typos.
 	* manual/charset.texi (Selecting the Conversion): Likewise.
 	* manual/getopt.texi (Getopt Long Options): Likewise.
diff --git a/manual/charset.texi b/manual/charset.texi
index a49798c..808469b 100644
--- a/manual/charset.texi
+++ b/manual/charset.texi
@@ -393,7 +393,7 @@ We already said above that the currently selected locale for the
 by the functions we are about to describe.  Each locale uses its own
 character set (given as an argument to @code{localedef}) and this is the
 one assumed as the external multibyte encoding.  The wide character
-set always is UCS-4, at least on GNU systems.
+set is always UCS-4, at least on GNU systems.

 A characteristic of each multibyte character set is the maximum number
 of bytes that can be necessary to represent one character.  This
@@ -577,8 +577,8 @@ The @code{btowc} function was introduced in @w{Amendment 1} to @w{ISO C90}
 and is declared in @file{wchar.h}.
 @end deftypefun

-Despite the limitation that the single byte value always is interpreted
-in the initial state this function is actually useful most of the time.
+Despite the limitation that the single byte value is always interpreted
+in the initial state, this function is actually useful most of the time.
 Most characters are either entirely single-byte character sets or they
 are extension to ASCII.  But then it is possible to write code like this
 (not that this specific example is very useful):
@@ -607,10 +607,10 @@ that there is no guarantee that one can perform this kind of arithmetic
 on the character of the character set used for @code{wchar_t}
 representation.  In other situations the bytes are not constant at
 compile time and so the compiler cannot do the work.  In situations like
-this it is necessary @code{btowc}.
+this, using @code{btowc} is required.

 @noindent
-There also is a function for the conversion in the other direction.
+There is also a function for the conversion in the other direction.

 @comment wchar.h
 @comment ISO

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

commit bbf70ae9ce646540576f2b0cbc66b90da1511b0b
Author: Jim Meyering <meyering@redhat.com>
Date:   Wed May 28 11:37:21 2008 +0200

    manual: fix doubled-words and typos
    
    * manual/charset.texi (Selecting the Conversion): Likewise.
    * manual/errno.texi (Error Messages): Likewise.
    * manual/getopt.texi (Getopt Long Options): Likewise.
    * manual/memory.texi (Resizing the Data Segment): Likewise.
    * manual/message.texi (GUI program problems): Likewise.
    * manual/resource.texi (CPU Affinity): Likewise.
    * manual/stdio.texi (Streams and Threads): Likewise.
    * manual/time.texi (High Accuracy Clock): Likewise.

diff --git a/ChangeLog b/ChangeLog
index ac36832..e9a86cc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2010-02-22  Jim Meyering  <meyering@redhat.com>
+
+	* manual/errno.texi (Error Messages): Fix doubled-words and typos.
+	* manual/charset.texi (Selecting the Conversion): Likewise.
+	* manual/getopt.texi (Getopt Long Options): Likewise.
+	* manual/memory.texi (Resizing the Data Segment): Likewise.
+	* manual/message.texi (GUI program problems): Likewise.
+	* manual/resource.texi (CPU Affinity): Likewise.
+	* manual/stdio.texi (Streams and Threads): Likewise.
+	* manual/time.texi (High Accuracy Clock): Likewise.
+
 2009-02-20  David S. Miller  <davem@davemloft.net>

 	* sysdeps/sparc/sparc32/dl-machine.h (elf_machine_runtime_setup):
diff --git a/manual/charset.texi b/manual/charset.texi
index 79854e5..a49798c 100644
--- a/manual/charset.texi
+++ b/manual/charset.texi
@@ -393,7 +393,7 @@ We already said above that the currently selected locale for the
 by the functions we are about to describe.  Each locale uses its own
 character set (given as an argument to @code{localedef}) and this is the
 one assumed as the external multibyte encoding.  The wide character
-character set always is UCS-4, at least on GNU systems.
+set always is UCS-4, at least on GNU systems.

 A characteristic of each multibyte character set is the maximum number
 of bytes that can be necessary to represent one character.  This
diff --git a/manual/errno.texi b/manual/errno.texi
index 03a868e..3b0af0c 100644
--- a/manual/errno.texi
+++ b/manual/errno.texi
@@ -1425,7 +1425,7 @@ available on all systems implementing @w{ISO C}.  But often the text
 @code{perror} generates is not what is wanted and there is no way to
 extend or change what @code{perror} does.  The GNU coding standard, for
 instance, requires error messages to be preceded by the program name and
-programs which read some input files should should provide information
+programs which read some input files should provide information
 about the input file name and the line number in case an error is
 encountered while reading the file.  For these occasions there are two
 functions available which are widely used throughout the GNU project.
diff --git a/manual/getopt.texi b/manual/getopt.texi
index 8c9bd20..7704515 100644
--- a/manual/getopt.texi
+++ b/manual/getopt.texi
@@ -269,7 +269,7 @@ When @code{getopt_long} has no more options to handle, it returns
 @var{argv} of the next remaining argument.
 @end deftypefun

-Since long option names were used before before the @code{getopt_long}
+Since long option names were used before the @code{getopt_long}
 options was invented there are program interfaces which require programs
 to recognize options like @w{@samp{-option value}} instead of
 @w{@samp{--option value}}.  To enable these programs to use the GNU
diff --git a/manual/memory.texi b/manual/memory.texi
index 43afc7b..59ea1ee 100644
--- a/manual/memory.texi
+++ b/manual/memory.texi
@@ -2379,7 +2379,7 @@ exceed the process' data storage limit.
 @c The Brk system call in Linux (as opposed to the GNU C Library function)
 @c is considerably different.  It always returns the new end of the data
 @c segment, whether it succeeds or fails.  The GNU C library Brk determines
-@c it's a failure if and only if if the system call returns an address less
+@c it's a failure if and only if the system call returns an address less
 @c than the address requested.

 @end deftypefun
diff --git a/manual/message.texi b/manual/message.texi
index e772b2d..e44545a 100644
--- a/manual/message.texi
+++ b/manual/message.texi
@@ -1466,7 +1466,7 @@ have this problem.  But there is a very simple and powerful method to
 handle these kind of problems with the @code{gettext} functions.

 @noindent
-As as example consider the following fictional situation.  A GUI program
+As an example consider the following fictional situation.  A GUI program
 has a menu bar with the following entries:

 @smallexample
diff --git a/manual/resource.texi b/manual/resource.texi
index 4a814c9..0549572 100644
--- a/manual/resource.texi
+++ b/manual/resource.texi
@@ -1288,7 +1288,7 @@ protected from concurrent accesses from different processors.
 The POSIX standard up to this date is of not much help to solve this
 problem.  The Linux kernel provides a set of interfaces to allow
 specifying @emph{affinity sets} for a process.  The scheduler will
-schedule the thread or process on on CPUs specified by the affinity
+schedule the thread or process on CPUs specified by the affinity
 masks.  The interfaces which the GNU C library define follow to some
 extend the Linux kernel interface.

diff --git a/manual/stdio.texi b/manual/stdio.texi
index 6748513..9fb209a 100644
--- a/manual/stdio.texi
+++ b/manual/stdio.texi
@@ -574,7 +574,7 @@ operation itself is avoided.  More importantly, functions like
 introduction of threads) were implemented as macros which are very fast
 if the buffer is not empty.  With the addition of locking requirements
 these functions are no longer implemented as macros since they would
-would expand to too much code.
+expand to too much code.
 But these macros are still available with the same functionality under the new
 names @code{putc_unlocked} and @code{getc_unlocked}.  This possibly huge
 difference of speed also suggests the use of the @code{_unlocked}
diff --git a/manual/time.texi b/manual/time.texi
index 393bccd..f1f4254 100644
--- a/manual/time.texi
+++ b/manual/time.texi
@@ -972,7 +972,7 @@ This counter represents the number of calibration errors (caused by
 large offsets or jitter).

 @item long int stbcnt
-This counter denotes the number of of calibrations where the stability
+This counter denotes the number of calibrations where the stability
 exceeded the threshold.
 @end table
 @end deftp

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

Summary of changes:
 ChangeLog            |   15 +++++++++++++++
 manual/charset.texi  |   10 +++++-----
 manual/errno.texi    |    2 +-
 manual/getopt.texi   |    2 +-
 manual/math.texi     |    2 +-
 manual/memory.texi   |    2 +-
 manual/message.texi  |    2 +-
 manual/resource.texi |    2 +-
 manual/stdio.texi    |    2 +-
 manual/time.texi     |    2 +-
 10 files changed, 28 insertions(+), 13 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]