summaryrefslogtreecommitdiff
path: root/src/dired.c
diff options
context:
space:
mode:
authorMichael Albinus <michael.albinus@gmx.de>2020-10-19 13:31:33 +0200
committerMichael Albinus <michael.albinus@gmx.de>2020-10-19 13:31:33 +0200
commit74519db6dfcffad8ac7a273d43992d2535320a8c (patch)
tree798f7b92400785894c89cd53a6bc4a33163f01b8 /src/dired.c
parent653eab4788010b2c070dadea652a99e89c0ad3ac (diff)
downloademacs-74519db6dfcffad8ac7a273d43992d2535320a8c.tar.gz
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/dired.c')
-rw-r--r--src/dired.c4
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,
There are three optional arguments:
If FULL is non-nil, return absolute file names. Otherwise return names
that are relative to the specified directory.
-If MATCH is non-nil, mention only file names which non-directory part
+If MATCH is non-nil, mention only file names whose non-directory part
matches the regexp MATCH.
If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
Otherwise, the list returned is sorted with `string-lessp'.
@@ -326,7 +326,7 @@ by `file-attributes'.
This function accepts four optional arguments:
If FULL is non-nil, return absolute file names. Otherwise return names
that are relative to the specified directory.
-If MATCH is non-nil, mention only file names which non-directory part
+If MATCH is non-nil, mention only file names whose non-directory part
matches the regexp MATCH.
If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
NOSORT is useful if you plan to sort the result yourself.