# HG changeset patch # User Juanma Barranquero # Date 1045059064 0 # Node ID fe39d5f94bfd49329b74a1d60fb5e641d3041bc1 # Parent 2807728185586b0b189046765dbdbee9539badf6 (file-truename): Revert change from 2002-11-27. diff -r 280772818558 -r fe39d5f94bfd lisp/files.el --- 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