changeset 14524:10110e5a680a

(Fdirectory_files): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Fri, 09 Feb 1996 01:37:35 +0000
parents e260aa3684a5
children 5322690a5a44
files src/dired.c
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/dired.c	Thu Feb 08 23:26:45 1996 +0000
+++ b/src/dired.c	Fri Feb 09 01:37:35 1996 +0000
@@ -106,8 +106,9 @@
 DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 4, 0,
   "Return a list of names of files in DIRECTORY.\n\
 There are three optional arguments:\n\
-If FULL is non-nil, absolute pathnames of the files are returned.\n\
-If MATCH is non-nil, only pathnames containing that regexp are returned.\n\
+If FULL is non-nil, return absolute file names.  Otherwise return names\n\
+ that are relative to the specified directory.\n\
+If MATCH is non-nil, mention only file names that match the regexp MATCH.\n\
 If NOSORT is non-nil, the list is not sorted--its order is unpredictable.\n\
  NOSORT is useful if you plan to sort the result yourself.")
   (directory, full, match, nosort)
@@ -229,7 +230,7 @@
   2, 2, 0,
   "Complete file name FILE in directory DIRECTORY.\n\
 Returns the longest string\n\
-common to all filenames in DIRECTORY that start with FILE.\n\
+common to all file names in DIRECTORY that start with FILE.\n\
 If there is only one and FILE matches it exactly, returns t.\n\
 Returns nil if DIR contains no name starting with FILE.")
   (file, directory)