"filesystem" -> "file system"
authorLudovic Courtès <ludo@gnu.org>
Tue, 24 Nov 2009 22:16:08 +0000 (23:16 +0100)
committerLudovic Courtès <ludo@gnu.org>
Tue, 24 Nov 2009 22:16:08 +0000 (23:16 +0100)
* doc/ref/misc-modules.texi, doc/sources/unix.texi,
  module/ice-9/ftw.scm: Replace "filesystem" by "file system".

doc/ref/misc-modules.texi
doc/sources/unix.texi
module/ice-9/ftw.scm

index db90c41..35fe564 100644 (file)
@@ -1038,7 +1038,7 @@ Reference Manual}).
 @sp 1
 
 @defun ftw startname proc ['hash-size n]
-Walk the filesystem tree descending from @var{startname}, calling
+Walk the file system tree descending from @var{startname}, calling
 @var{proc} for each file and directory.
 
 Hard links and symbolic links are followed.  A file or directory is
@@ -1094,7 +1094,7 @@ use @code{throw} or similar to escape.
 
 
 @defun nftw startname proc ['chdir] ['depth] ['hash-size n] ['mount] ['physical]
-Walk the filesystem tree starting at @var{startname}, calling
+Walk the file system tree starting at @var{startname}, calling
 @var{proc} for each file and directory.  @code{nftw} has extra
 features over the basic @code{ftw} described above.
 
@@ -1177,7 +1177,7 @@ Set the size of the hash table used to track items already visited.
 
 @item @code{mount}
 Don't cross a mount point, meaning only visit items on the same
-filesystem as @var{startname} (ie.@: the same @code{stat:dev}).
+file system as @var{startname} (ie.@: the same @code{stat:dev}).
 
 @item @code{physical}
 Don't follow symbolic links, instead report them to @var{proc} as
index e8a189c..0ef894a 100644 (file)
@@ -12,7 +12,7 @@ be required to make them available.
 * Ports and descriptors::       Ports, file descriptors and how they
                                 interact.
 * Extended I/O::                Reading and writing to ports.
-* File system::                 Working in a hierarchical filesystem.
+* File system::                 Working in a hierarchical file system.
 * User database::               Information about users from system databases.
 * Processes::                   Information and control of Unix processes.
 * Terminals::                   Terminals and pseudo-terminals.
index ce2fb16..e6ac0b4 100644 (file)
@@ -1,4 +1,4 @@
-;;;; ftw.scm --- filesystem tree walk
+;;;; ftw.scm --- file system tree walk
 
 ;;;;   Copyright (C) 2002, 2003, 2006 Free Software Foundation, Inc.
 ;;;;
 ;;           entered directory.
 ;;
 ;; * Procedure: (ftw filename proc . options)
-;;   Do a filesystem tree walk starting at FILENAME using PROC.
+;;   Do a file system tree walk starting at FILENAME using PROC.
 ;;
 ;;   The `ftw' procedure calls the callback procedure given in the
 ;;   parameter PROC for every item which is found in the directory
 ;;   returned as the return value of `ftw'.
 ;;
 ;; * Procedure: (nftw filename proc . control-flags)
-;;   Do a new-style filesystem tree walk starting at FILENAME using PROC.
+;;   Do a new-style file system tree walk starting at FILENAME using PROC.
 ;;   Various optional CONTROL-FLAGS alter the default behavior.
 ;;
 ;;   The `nftw' procedures works like the `ftw' procedures.  It calls
 ;;
 ;;   mount'
 ;;        The callback procedure is only called for items which are on
-;;        the same mounted filesystem as the directory given as the
+;;        the same mounted file system as the directory given as the
 ;;        FILENAME parameter to `nftw'.
 ;;
 ;;   chdir'