diff options
| author | Michael Albinus | 2020-10-19 13:31:33 +0200 |
|---|---|---|
| committer | Michael Albinus | 2020-10-19 13:31:33 +0200 |
| commit | 74519db6dfcffad8ac7a273d43992d2535320a8c (patch) | |
| tree | 798f7b92400785894c89cd53a6bc4a33163f01b8 /src | |
| parent | 653eab4788010b2c070dadea652a99e89c0ad3ac (diff) | |
| download | emacs-74519db6dfcffad8ac7a273d43992d2535320a8c.tar.gz emacs-74519db6dfcffad8ac7a273d43992d2535320a8c.zip | |
Further clarification of directory-files* doc
* doc/lispref/files.texi (Contents of Directories):
Precise description of MATCH-REGEXP of directory-files. Add
directory-files-no-dot-files-regexp.
* lisp/files.el (directory-files-no-dot-files-regexp): Revert last fix.
* src/dired.c (Fdirectory_files)
(Fdirectory_files_and_attributes): Fix wording in docstring.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dired.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dired.c b/src/dired.c index 442d3aa48fb..8256f2626dc 100644 --- a/src/dired.c +++ b/src/dired.c | |||
| @@ -293,7 +293,7 @@ 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 which non-directory part | 296 | If MATCH is non-nil, mention only file names whose non-directory part |
| 297 | matches the regexp MATCH. | 297 | matches the regexp MATCH. |
| 298 | 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. |
| 299 | Otherwise, the list returned is sorted with `string-lessp'. | 299 | Otherwise, the list returned is sorted with `string-lessp'. |
| @@ -326,7 +326,7 @@ by `file-attributes'. | |||
| 326 | This function accepts four optional arguments: | 326 | This function accepts four optional arguments: |
| 327 | 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 |
| 328 | that are relative to the specified directory. | 328 | that are relative to the specified directory. |
| 329 | If MATCH is non-nil, mention only file names which non-directory part | 329 | If MATCH is non-nil, mention only file names whose non-directory part |
| 330 | matches the regexp MATCH. | 330 | matches the regexp MATCH. |
| 331 | 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. |
| 332 | NOSORT is useful if you plan to sort the result yourself. | 332 | NOSORT is useful if you plan to sort the result yourself. |