diff options
| author | Richard M. Stallman | 1996-02-09 01:37:35 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-02-09 01:37:35 +0000 |
| commit | 7b6540dd1b5bc4ebf307f0f92db78c3da974fe90 (patch) | |
| tree | dae770f340cf63d12f7309f6f7e1d10b0191cfa7 /src/dired.c | |
| parent | c10902fb9ccb0c9788323e79193d95eaccab89cd (diff) | |
| download | emacs-7b6540dd1b5bc4ebf307f0f92db78c3da974fe90.tar.gz emacs-7b6540dd1b5bc4ebf307f0f92db78c3da974fe90.zip | |
(Fdirectory_files): Doc fix.
Diffstat (limited to 'src/dired.c')
| -rw-r--r-- | src/dired.c | 7 |
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; | |||
| 106 | DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 4, 0, | 106 | DEFUN ("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\ |
| 108 | There are three optional arguments:\n\ | 108 | There are three optional arguments:\n\ |
| 109 | If FULL is non-nil, absolute pathnames of the files are returned.\n\ | 109 | If FULL is non-nil, return absolute file names. Otherwise return names\n\ |
| 110 | If MATCH is non-nil, only pathnames containing that regexp are returned.\n\ | 110 | that are relative to the specified directory.\n\ |
| 111 | If MATCH is non-nil, mention only file names that match the regexp MATCH.\n\ | ||
| 111 | If NOSORT is non-nil, the list is not sorted--its order is unpredictable.\n\ | 112 | If 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\ |
| 231 | Returns the longest string\n\ | 232 | Returns the longest string\n\ |
| 232 | common to all filenames in DIRECTORY that start with FILE.\n\ | 233 | common to all file names in DIRECTORY that start with FILE.\n\ |
| 233 | If there is only one and FILE matches it exactly, returns t.\n\ | 234 | If there is only one and FILE matches it exactly, returns t.\n\ |
| 234 | Returns nil if DIR contains no name starting with FILE.") | 235 | Returns nil if DIR contains no name starting with FILE.") |
| 235 | (file, directory) | 236 | (file, directory) |