diff options
author | Glenn Morris <rgm@gnu.org> | 2008-10-30 04:32:33 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-10-30 04:32:33 +0000 |
commit | 976556c92132724204a49c13c88c28c025ab784d (patch) | |
tree | ff33f509d5491f1911f58e939991ebd7a0443c8f /lisp | |
parent | 2194ea1ceb8b4544a804cf663052beaffa5e843f (diff) | |
download | emacs-976556c92132724204a49c13c88c28c025ab784d.tar.gz |
(locate-dominating-stop-dir-regexp): Fix typo.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/files.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d681ead850e..d16e4f52d2a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2008-10-30 Glenn Morris <rgm@gnu.org> + + * files.el (locate-dominating-stop-dir-regexp): Fix typo. + 2008-10-29 Chong Yidong <cyd@stupidchicken.com> * electric.el (Electric-pop-up-window): Don't shrink the window if diff --git a/lisp/files.el b/lisp/files.el index 710c2a4f367..84a919befa5 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -717,7 +717,7 @@ PATH-AND-SUFFIXES is a pair of lists, (DIRECTORIES . SUFFIXES)." (make-obsolete 'locate-file-completion 'locate-file-completion-table "23.1") (defvar locate-dominating-stop-dir-regexp - "\\`\\(?:[\\/][\\/]\\|/\\(?:net\\|afs\\|\\.\\\.\\.\\)/\\)\\'" + "\\`\\(?:[\\/][\\/]\\|/\\(?:net\\|afs\\|\\.\\.\\.\\)/\\)\\'" "Regexp of directory names which stop the search in `locate-dominating-file'. Any directory whose name matches this regexp will be treated like a kind of root directory by `locate-dominating-file' which will stop its search |