# HG changeset patch # User Juanma Barranquero # Date 1085952102 0 # Node ID ccd8cdf69359036b1033f697ab291d18a03df796 # Parent dc60eb9fbbdcbdbc56195ad662a6b1e355778bbf Rework docstring (wording by Eli Zaretskii and Kai Grossjohann). diff -r dc60eb9fbbdc -r ccd8cdf69359 lisp/dos-fns.el --- a/lisp/dos-fns.el Sun May 30 21:00:53 2004 +0000 +++ b/lisp/dos-fns.el Sun May 30 21:21:42 2004 +0000 @@ -31,9 +31,13 @@ ;; This overrides a trivial definition in files.el. (defun convert-standard-filename (filename) "Convert a standard file's name to something suitable for the current OS. -This function's standard definition is trivial; it just returns the argument. -However, on some systems, the function is redefined -with a definition that really does change some file names." +This means to guarantee valid names and perhaps to canonicalize +certain patterns. + +On Windows and DOS, replace invalid characters. On DOS, make +sure to obey the 8.3 limitations. On Windows, turn Cygwin names +into native names, and also turn slashes into backslashes if the +shell requires it (see `w32-shell-dos-semantics')." (if (or (not (stringp filename)) ;; This catches the case where FILENAME is "x:" or "x:/" or ;; "/", thus preventing infinite recursion. diff -r dc60eb9fbbdc -r ccd8cdf69359 lisp/files.el --- a/lisp/files.el Sun May 30 21:00:53 2004 +0000 +++ b/lisp/files.el Sun May 30 21:21:42 2004 +0000 @@ -481,10 +481,15 @@ (defun convert-standard-filename (filename) "Convert a standard file's name to something suitable for the current OS. -This function's standard definition is trivial; it just returns the argument. -However, on some systems, the function is redefined with a definition -that really does change some file names to canonicalize certain -patterns and to guarantee valid names." +This means to guarantee valid names and perhaps to canonicalize +certain patterns. + +This function's standard definition is trivial; it just returns +the argument. However, on Windows and DOS, replace invalid +characters. On DOS, make sure to obey the 8.3 limitations. On +Windows, turn Cygwin names into native names, and also turn +slashes into backslashes if the shell requires it (see +`w32-shell-dos-semantics')." filename) (defun read-directory-name (prompt &optional dir default-dirname mustmatch initial) diff -r dc60eb9fbbdc -r ccd8cdf69359 lisp/w32-fns.el --- a/lisp/w32-fns.el Sun May 30 21:00:53 2004 +0000 +++ b/lisp/w32-fns.el Sun May 30 21:21:42 2004 +0000 @@ -230,9 +230,13 @@ (defun convert-standard-filename (filename) "Convert a standard file's name to something suitable for the current OS. -This function's standard definition is trivial; it just returns the argument. -However, on some systems, the function is redefined -with a definition that really does change some file names." +This means to guarantee valid names and perhaps to canonicalize +certain patterns. + +On Windows and DOS, replace invalid characters. On DOS, make +sure to obey the 8.3 limitations. On Windows, turn Cygwin names +into native names, and also turn slashes into backslashes if the +shell requires it (see `w32-shell-dos-semantics')." (let ((name (save-match-data (if (string-match "\\`/cygdrive/\\([a-zA-Z]\\)/" filename)