diff options
| author | Miles Bader <miles@gnu.org> | 2008-02-25 00:21:57 +0000 |
|---|---|---|
| committer | Miles Bader <miles@gnu.org> | 2008-02-25 00:21:57 +0000 |
| commit | ffe832ea680b4820f5ff399191f7f2d41350ee2e (patch) | |
| tree | dd42d69046f8209a8e2c89f54409ac7a0ce9bf7d /lisp/files.el | |
| parent | d8891294b81672883c21b6b957e5a17b6990b8e4 (diff) | |
| parent | ff20fdbbd2bbfa87a058c182768e3731025013ca (diff) | |
| download | emacs-ffe832ea680b4820f5ff399191f7f2d41350ee2e.tar.gz | |
Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1081
Diffstat (limited to 'lisp/files.el')
| -rw-r--r-- | lisp/files.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/files.el b/lisp/files.el index 3950d5e7195..908bc95356b 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -226,12 +226,12 @@ have fast storage with limited space, such as a RAM disk." (cond ((and (eq system-type 'ms-dos) (not (msdos-long-file-names))) (concat "^\\([^A-Z[-`a-z]\\|..+\\)?:\\|" ; colon except after drive "[+, ;=|<>\"?*]\\|\\[\\|\\]\\|" ; invalid characters - "[\000-\031]\\|" ; control characters + "[\000-\037]\\|" ; control characters "\\(/\\.\\.?[^/]\\)\\|" ; leading dots "\\(/[^/.]+\\.[^/.]*\\.\\)")) ; more than a single dot ((memq system-type '(ms-dos windows-nt cygwin)) (concat "^\\([^A-Z[-`a-z]\\|..+\\)?:\\|" ; colon except after drive - "[|<>\"?*\000-\031]")) ; invalid characters + "[|<>\"?*\000-\037]")) ; invalid characters (t "[\000]")) "Regexp recognizing file names which aren't allowed by the filesystem.") |
