Mercurial > emacs
changeset 108676:3a80fc3735bf
Backport from trunk: Fix bug#6298.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Mon, 31 May 2010 17:24:46 +0200 |
parents | e3df298f4131 |
children | 7a38217041bb |
files | lisp/ChangeLog lisp/files.el |
diffstat | 2 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Mon May 31 10:11:18 2010 -0400 +++ b/lisp/ChangeLog Mon May 31 17:24:46 2010 +0200 @@ -1,3 +1,7 @@ +2010-05-31 Drew Adams <drew.adams@oracle.com> + + * files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298). + 2010-05-31 Juanma Barranquero <lekktu@gmail.com> * subr.el (momentary-string-display): Just use read-event to read
--- a/lisp/files.el Mon May 31 10:11:18 2010 -0400 +++ b/lisp/files.el Mon May 31 17:24:46 2010 +0200 @@ -4647,7 +4647,7 @@ (defconst directory-files-no-dot-files-regexp "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*" - "Regexp of file names excluging \".\" an \"..\".") + "Regexp matching any file name except \".\" and \"..\".") (defun delete-directory (directory &optional recursive) "Delete the directory named DIRECTORY. Does not follow symlinks.