aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Albinus2020-10-19 13:31:33 +0200
committerMichael Albinus2020-10-19 13:31:33 +0200
commit74519db6dfcffad8ac7a273d43992d2535320a8c (patch)
tree798f7b92400785894c89cd53a6bc4a33163f01b8 /src
parent653eab4788010b2c070dadea652a99e89c0ad3ac (diff)
downloademacs-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.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,
293There are three optional arguments: 293There are three optional arguments:
294If FULL is non-nil, return absolute file names. Otherwise return names 294If 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.
296If MATCH is non-nil, mention only file names which non-directory part 296If MATCH is non-nil, mention only file names whose non-directory part
297 matches the regexp MATCH. 297 matches the regexp MATCH.
298If NOSORT is non-nil, the list is not sorted--its order is unpredictable. 298If 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'.
326This function accepts four optional arguments: 326This function accepts four optional arguments:
327If FULL is non-nil, return absolute file names. Otherwise return names 327If 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.
329If MATCH is non-nil, mention only file names which non-directory part 329If MATCH is non-nil, mention only file names whose non-directory part
330 matches the regexp MATCH. 330 matches the regexp MATCH.
331If NOSORT is non-nil, the list is not sorted--its order is unpredictable. 331If 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.