diff options
author | Roland McGrath <roland@hack.frob.com> | 2011-09-27 09:32:38 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2011-09-27 09:32:38 -0700 |
commit | 2056100b8003abe3b0dee62a739d620031e5a4af (patch) | |
tree | 2aeb8fc2c7bccacc893393bca47f194cc19df1d2 | |
parent | 32c76b63be605d12314e0c6ac2bd702c883d1423 (diff) | |
download | glibc-2056100b8003abe3b0dee62a739d620031e5a4af.tar glibc-2056100b8003abe3b0dee62a739d620031e5a4af.tar.gz glibc-2056100b8003abe3b0dee62a739d620031e5a4af.tar.bz2 glibc-2056100b8003abe3b0dee62a739d620031e5a4af.zip |
Fix some grammar in the manual.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | manual/signal.texi | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2011-09-27 Roland McGrath <roland@hack.frob.com> + + [BZ #13226] + * manual/signal.texi (Longjmp in Handler): Grammar fixes. + 2011-09-27 Andreas Schwab <schwab@redhat.com> * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): diff --git a/manual/signal.texi b/manual/signal.texi index 6cdae1502b..7bd7a63b01 100644 --- a/manual/signal.texi +++ b/manual/signal.texi @@ -1544,8 +1544,8 @@ for the parts of the program that update important data structures. Blocking the signal delays its delivery until it is unblocked, once the critical updating is finished. @xref{Blocking Signals}. -The other way to re-initialize the crucial data structures in the signal -handler, or make their values consistent. +The other way is to re-initialize the crucial data structures in the +signal handler, or to make their values consistent. Here is a rather schematic example showing the reinitialization of one global variable. |