diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2020-10-19 13:31:33 +0200 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2020-10-19 13:31:33 +0200 |
commit | 74519db6dfcffad8ac7a273d43992d2535320a8c (patch) | |
tree | 798f7b92400785894c89cd53a6bc4a33163f01b8 /lisp | |
parent | 653eab4788010b2c070dadea652a99e89c0ad3ac (diff) | |
download | emacs-74519db6dfcffad8ac7a273d43992d2535320a8c.tar.gz emacs-74519db6dfcffad8ac7a273d43992d2535320a8c.tar.bz2 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 'lisp')
-rw-r--r-- | lisp/files.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el index 78ccb9ba910..c2c58dae934 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -5787,7 +5787,7 @@ If called interactively, then PARENTS is non-nil." (defconst directory-files-no-dot-files-regexp "[^.]\\|\\.\\.\\." - "Regexp matching any non-directory part of a file name except \".\" and \"..\". + "Regexp matching any file name except \".\" and \"..\". More precisely, it matches parts of any nonempty string except those two. It is useful as the regexp argument to `directory-files' and `directory-files-and-attributes'.") |