1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

"filesystem" -> "file system"

* doc/ref/misc-modules.texi, doc/sources/unix.texi,
  module/ice-9/ftw.scm: Replace "filesystem" by "file system".
This commit is contained in:
Ludovic Courtès 2009-11-24 23:16:08 +01:00
parent 114bc68ac9
commit c4e843571f
3 changed files with 8 additions and 8 deletions

View 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

View 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.

View 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.
;;;;
@ -104,7 +104,7 @@
;; 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
@ -140,7 +140,7 @@
;; 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
@ -165,7 +165,7 @@
;;
;; 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'