diff options
| author | Michael Albinus | 2020-10-19 09:48:51 +0200 |
|---|---|---|
| committer | Michael Albinus | 2020-10-19 09:48:51 +0200 |
| commit | 6d00233bfdf52fb3a03e8febabbfad5a331777cf (patch) | |
| tree | f6733a8bfa1caefb298eeac87f0381534f91179e | |
| parent | f98e57b54bbb6c8aa3d5b00b7d8b33266025b9b1 (diff) | |
| download | emacs-6d00233bfdf52fb3a03e8febabbfad5a331777cf.tar.gz emacs-6d00233bfdf52fb3a03e8febabbfad5a331777cf.zip | |
* src/dired.c (Fdirectory_files, Fdirectory_files_and_attributes):
Adapt docstring.
| -rw-r--r-- | src/dired.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/dired.c b/src/dired.c index 1584b6acf08..442d3aa48fb 100644 --- a/src/dired.c +++ b/src/dired.c | |||
| @@ -293,7 +293,8 @@ DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 4, 0, | |||
| 293 | There are three optional arguments: | 293 | There are three optional arguments: |
| 294 | If FULL is non-nil, return absolute file names. Otherwise return names | 294 | If FULL is non-nil, return absolute file names. Otherwise return names |
| 295 | that are relative to the specified directory. | 295 | that are relative to the specified directory. |
| 296 | If MATCH is non-nil, mention only file names that match the regexp MATCH. | 296 | If MATCH is non-nil, mention only file names which non-directory part |
| 297 | matches the regexp MATCH. | ||
| 297 | If NOSORT is non-nil, the list is not sorted--its order is unpredictable. | 298 | If NOSORT is non-nil, the list is not sorted--its order is unpredictable. |
| 298 | Otherwise, the list returned is sorted with `string-lessp'. | 299 | Otherwise, the list returned is sorted with `string-lessp'. |
| 299 | NOSORT is useful if you plan to sort the result yourself. */) | 300 | NOSORT is useful if you plan to sort the result yourself. */) |
| @@ -325,11 +326,12 @@ by `file-attributes'. | |||
| 325 | This function accepts four optional arguments: | 326 | This function accepts four optional arguments: |
| 326 | If FULL is non-nil, return absolute file names. Otherwise return names | 327 | If FULL is non-nil, return absolute file names. Otherwise return names |
| 327 | that are relative to the specified directory. | 328 | that are relative to the specified directory. |
| 328 | If MATCH is non-nil, mention only file names that match the regexp MATCH. | 329 | If MATCH is non-nil, mention only file names which non-directory part |
| 330 | matches the regexp MATCH. | ||
| 329 | If NOSORT is non-nil, the list is not sorted--its order is unpredictable. | 331 | If NOSORT is non-nil, the list is not sorted--its order is unpredictable. |
| 330 | NOSORT is useful if you plan to sort the result yourself. | 332 | NOSORT is useful if you plan to sort the result yourself. |
| 331 | ID-FORMAT specifies the preferred format of attributes uid and gid, see | 333 | ID-FORMAT specifies the preferred format of attributes uid and gid, see |
| 332 | `file-attributes' for further documentation. | 334 | `file-attributes' for further documentation. |
| 333 | On MS-Windows, performance depends on `w32-get-true-file-attributes', | 335 | On MS-Windows, performance depends on `w32-get-true-file-attributes', |
| 334 | which see. */) | 336 | which see. */) |
| 335 | (Lisp_Object directory, Lisp_Object full, Lisp_Object match, | 337 | (Lisp_Object directory, Lisp_Object full, Lisp_Object match, |