Mercurial > emacs
changeset 49749:fe39d5f94bfd
(file-truename): Revert change from 2002-11-27.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Wed, 12 Feb 2003 14:11:04 +0000 |
parents | 280772818558 |
children | 7decc914a393 |
files | lisp/files.el |
diffstat | 1 files changed, 2 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/files.el Wed Feb 12 11:41:37 2003 +0000 +++ b/lisp/files.el Wed Feb 12 14:11:04 2003 +0000 @@ -682,10 +682,8 @@ (setq filename (funcall handler 'file-truename filename)) ;; If filename contains a wildcard, newname will be the old name. (unless (string-match "[[*?]" filename) - ;; If filename exists, use the long name, otherwise - ;; canonicalize the name, to handle case differences. - (setq filename (or (w32-long-file-name filename) - (untranslated-canonical-name filename))))) + ;; If filename exists, use the long name + (setq filename (or (w32-long-file-name filename) filename)))) (setq done t))) ;; If this file directly leads to a link, process that iteratively