diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/dired.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/dired.c b/src/dired.c index c446223a0bc..a753b1930e6 100644 --- a/src/dired.c +++ b/src/dired.c | |||
| @@ -358,7 +358,14 @@ If NOSORT is non-nil, the list is not sorted--its order is unpredictable. | |||
| 358 | DEFUN ("directory-files-and-attributes", Fdirectory_files_and_attributes, | 358 | DEFUN ("directory-files-and-attributes", Fdirectory_files_and_attributes, |
| 359 | Sdirectory_files_and_attributes, 1, 5, 0, | 359 | Sdirectory_files_and_attributes, 1, 5, 0, |
| 360 | doc: /* Return a list of names of files and their attributes in DIRECTORY. | 360 | doc: /* Return a list of names of files and their attributes in DIRECTORY. |
| 361 | There are four optional arguments: | 361 | Value is a list of the form: |
| 362 | |||
| 363 | ((FILE1 FILE1-ATTRS) (FILE2 FILE2-ATTRS) ...) | ||
| 364 | |||
| 365 | where each FILEn-ATTRS is the attributes of FILEn as returned | ||
| 366 | by `file-attributes'. | ||
| 367 | |||
| 368 | This function accepts four optional arguments: | ||
| 362 | If FULL is non-nil, return absolute file names. Otherwise return names | 369 | If FULL is non-nil, return absolute file names. Otherwise return names |
| 363 | that are relative to the specified directory. | 370 | that are relative to the specified directory. |
| 364 | If MATCH is non-nil, mention only file names that match the regexp MATCH. | 371 | If MATCH is non-nil, mention only file names that match the regexp MATCH. |