From c4e843571f6dd5d7500e6886c00e6c213eabee30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Tue, 24 Nov 2009 23:16:08 +0100 Subject: [PATCH] "filesystem" -> "file system" * doc/ref/misc-modules.texi, doc/sources/unix.texi, module/ice-9/ftw.scm: Replace "filesystem" by "file system". --- doc/ref/misc-modules.texi | 6 +++--- doc/sources/unix.texi | 2 +- module/ice-9/ftw.scm | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/ref/misc-modules.texi b/doc/ref/misc-modules.texi index db90c419a..35fe564b9 100644 --- a/doc/ref/misc-modules.texi +++ b/doc/ref/misc-modules.texi @@ -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 diff --git a/doc/sources/unix.texi b/doc/sources/unix.texi index e8a189c5b..0ef894a42 100644 --- a/doc/sources/unix.texi +++ b/doc/sources/unix.texi @@ -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. diff --git a/module/ice-9/ftw.scm b/module/ice-9/ftw.scm index ce2fb165e..e6ac0b462 100644 --- a/module/ice-9/ftw.scm +++ b/module/ice-9/ftw.scm @@ -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'