+2008-02-24 Jason Rumney <jasonr@gnu.org>
+
+ * files.el (file-name-invalid-regexp): Fix octal/decimal confusion.
+
2008-02-23 Ulrich Mueller <ulm@gentoo.org> (tiny change)
* textmodes/bibtex.el (bibtex-convert-alien): Fix sit-for ags.
(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.")