All applied.

How about the following change to fix the examples you marked?
In the future, when you mark such things, please include the string
`FIXME:' somewhere in the vicinity.

Thanks!
Jim

Index: fileutils.texi
===================================================================
RCS file: /fetish/fileutils/doc/fileutils.texi,v
retrieving revision 1.115
diff -u -p -r1.115 fileutils.texi
--- fileutils.texi      2000/06/08 17:01:41     1.115
+++ fileutils.texi      2000/06/08 17:02:27
@@ -421,19 +421,19 @@ ls |xargs mv --target-directory=../d
 
 If you use the GNU @code{find} program, you can move @emph{all}
 files with this command:
-@c the following doesn't fit in smallbook size
 @smallexample
-find . -mindepth 1 -maxdepth 1 |xargs mv --target-directory=../d
+find . -mindepth 1 -maxdepth 1 \
+  | xargs mv --target-directory=../d
 @end smallexample
 
 But that will fail if there are no files in the current directory
 or if any file has a name containing a newline character.
 The following example removes those limitations and requires both
 GNU @code{find} and GNU @code{xargs}:
-@c and neither does the following:
 @smallexample
 find . -mindepth 1 -maxdepth 1 -print0 \
-  | xargs --null --no-run-if-empty mv --target-directory=../d
+  | xargs --null --no-run-if-empty \
+      mv --target-directory=../d
 @end smallexample
 
 @end table

Brian Youmans <[EMAIL PROTECTED]> writes:
| This corrects minor bobbles and gripes, mainly.  You may not
| want to make all of these.  There are diffs for all three
| main files in the manual.  filutils.texi I'm not done with,
| there will be more diffs for that one.
| 
| In one area I just commented two areas that need to be fixed
| because they overflow when the manual is printed in @smallbook
| format.  Someone who Knows Better Than I should modify the 
| example appropriately.
| 
| I am contemplating a more major rewrite, but I'm not sure
| I have the time or energy right now.  It cettainly could be
| made easier to use for the beginning user.
| 
| - Brian Youmans, FSF office staff
| 
| *** fileutils.old.texi        Wed Jun  7 18:07:40 2000
| --- fileutils.texi    Wed Jun  7 18:02:32 2000
| ***************

Reply via email to