aboutsummaryrefslogtreecommitdiffstats
path: root/src/dired.c
diff options
context:
space:
mode:
authorRichard M. Stallman1996-02-09 01:37:35 +0000
committerRichard M. Stallman1996-02-09 01:37:35 +0000
commit7b6540dd1b5bc4ebf307f0f92db78c3da974fe90 (patch)
treedae770f340cf63d12f7309f6f7e1d10b0191cfa7 /src/dired.c
parentc10902fb9ccb0c9788323e79193d95eaccab89cd (diff)
downloademacs-7b6540dd1b5bc4ebf307f0f92db78c3da974fe90.tar.gz
emacs-7b6540dd1b5bc4ebf307f0f92db78c3da974fe90.zip
(Fdirectory_files): Doc fix.
Diffstat (limited to 'src/dired.c')
-rw-r--r--src/dired.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/dired.c b/src/dired.c
index 5334ed64121..ce578a175a2 100644
--- a/src/dired.c
+++ b/src/dired.c
@@ -106,8 +106,9 @@ Lisp_Object Qfile_attributes;
106DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 4, 0, 106DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 4, 0,
107 "Return a list of names of files in DIRECTORY.\n\ 107 "Return a list of names of files in DIRECTORY.\n\
108There are three optional arguments:\n\ 108There are three optional arguments:\n\
109If FULL is non-nil, absolute pathnames of the files are returned.\n\ 109If FULL is non-nil, return absolute file names. Otherwise return names\n\
110If MATCH is non-nil, only pathnames containing that regexp are returned.\n\ 110 that are relative to the specified directory.\n\
111If MATCH is non-nil, mention only file names that match the regexp MATCH.\n\
111If NOSORT is non-nil, the list is not sorted--its order is unpredictable.\n\ 112If NOSORT is non-nil, the list is not sorted--its order is unpredictable.\n\
112 NOSORT is useful if you plan to sort the result yourself.") 113 NOSORT is useful if you plan to sort the result yourself.")
113 (directory, full, match, nosort) 114 (directory, full, match, nosort)
@@ -229,7 +230,7 @@ DEFUN ("file-name-completion", Ffile_name_completion, Sfile_name_completion,
229 2, 2, 0, 230 2, 2, 0,
230 "Complete file name FILE in directory DIRECTORY.\n\ 231 "Complete file name FILE in directory DIRECTORY.\n\
231Returns the longest string\n\ 232Returns the longest string\n\
232common to all filenames in DIRECTORY that start with FILE.\n\ 233common to all file names in DIRECTORY that start with FILE.\n\
233If there is only one and FILE matches it exactly, returns t.\n\ 234If there is only one and FILE matches it exactly, returns t.\n\
234Returns nil if DIR contains no name starting with FILE.") 235Returns nil if DIR contains no name starting with FILE.")
235 (file, directory) 236 (file, directory)