* gzexe.in: Work around FreeBSD shell trap bug.
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 8 Dec 2006 18:45:37 +0000 (18:45 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 8 Dec 2006 18:45:37 +0000 (18:45 +0000)
* gzip.1: Fix typo.
* doc/gzip.texi: Likewise.

ChangeLog
doc/gzip.texi
gzexe.in
gzip.1

index d7850e797844e9140785a23637688824f19a0fb6..2bfb01cfc68532caa264ec000b3d502e59e282d3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-12-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
+
+       * gzexe.in: Work around FreeBSD shell trap bug.
+       * gzip.1: Fix typo.
+       * doc/gzip.texi: Likewise.
+
 2006-12-08  Paul Eggert  <eggert@cs.ucla.edu>
 
        * .cvsignore: Add .deps, gzexe, gzip, zdiff, zforce, zgrep,
index fd782aa8e864008d0ef8f0844beace4e926439e6..9be2aa38d3d5d8d4a2c2501662dceff9094eeef9 100644 (file)
@@ -291,7 +291,7 @@ With @samp{--verbose}, the size totals and compression ratio for all files
 is also displayed, unless some sizes are unknown. With @samp{--quiet},
 the title and totals lines are not displayed.
 
-The @code{gzip} format represents the the input size modulo
+The @code{gzip} format represents the input size modulo
 @math{2^32}, so the uncompressed size and compression ratio are listed
 incorrectly for uncompressed files 4 GB and larger. To work around
 this problem, you can use the following command to discover a large
index 139ec615c2e2b74dfcd2df2593d4adc2685697e0..ed9ac717dac87a7e25483d46acc648e150f7563c 100644 (file)
--- a/gzexe.in
+++ b/gzexe.in
@@ -74,8 +74,7 @@ Try \`$0 --help' for more information."
 fi
 
 tmp=
-trap '
-  res=$?
+trap 'res=$?
   test -n "$tmp" && rm -f "$tmp"
   (exit $res); exit $res
 ' 0 1 2 3 5 10 13 15
@@ -145,8 +144,7 @@ umask=`umask`
 umask 77
 
 gztmpdir=
-trap '
-  res=$?
+trap 'res=$?
   test -n "$gztmpdir" && rm -fr "$gztmpdir"
   (exit $res); exit $res
 ' 0 1 2 3 5 10 13 15
diff --git a/gzip.1 b/gzip.1
index f52d6a0f1ac1520111f5081499f8c82bb251b291..784d8283e9765203bb51c08a15671ce0032de3ba 100644 (file)
--- a/gzip.1
+++ b/gzip.1
@@ -473,7 +473,7 @@ GNU tar. Make sure that the same block size (-b option of tar) is used
 for reading and writing compressed data on tapes.  (This example
 assumes you are using the GNU version of tar.)
 .SH BUGS
-The gzip format represents the the input size modulo 2^32, so the
+The gzip format represents the input size modulo 2^32, so the
 --list option reports incorrect uncompressed sizes and compression
 ratios for uncompressed files 4 GB and larger.  To work around this
 problem, you can use the following command to discover a large