# HG changeset patch # User Thien-Thi Nguyen # Date 1139306762 0 # Node ID 398abcca03eabe6f6f07337bda7c23213d140c94 # Parent 7559e2581420f6ab78481c74e8ef7b30517344f4 (wdired-get-filename): Fix bug: Don't re-normalize OLD. diff -r 7559e2581420 -r 398abcca03ea lisp/wdired.el --- a/lisp/wdired.el Tue Feb 07 09:22:56 2006 +0000 +++ b/lisp/wdired.el Tue Feb 07 10:06:02 2006 +0000 @@ -323,8 +323,8 @@ (if old (setq file (get-text-property beg 'old-name)) (setq end (next-single-property-change (1+ beg) 'end-name)) - (setq file (buffer-substring-no-properties (+ 2 beg) end))) - (and file (setq file (wdired-normalize-filename file)))) + (setq file (buffer-substring-no-properties (+ 2 beg) end)) + (and file (setq file (wdired-normalize-filename file))))) (if (or no-dir old) file (and file (> (length file) 0)