]> git.eshelyaron.com Git - emacs.git/commitdiff
(ange-ftp-file-name-sans-versions): Don't return
authorRichard M. Stallman <rms@gnu.org>
Tue, 18 Aug 1998 04:49:15 +0000 (04:49 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 18 Aug 1998 04:49:15 +0000 (04:49 +0000)
the shortened version of the file name.

lisp/ange-ftp.el

index fe9bc4492f733a160067037d5d2af3849a6db7bf..71551fb85f70df9997185bd3b4b1eddaee44d3e2 100644 (file)
@@ -4283,9 +4283,9 @@ NEWNAME should be the name to give the new compressed or uncompressed file.")
   "Alist of mapping host type into function to remove file version numbers.")
 
 (defun ange-ftp-file-name-sans-versions (file keep-backup-version)
-  (setq file (ange-ftp-abbreviate-filename file))
-  (let ((parsed (ange-ftp-ftp-name file))
-       host-type func)
+  (let* ((short (ange-ftp-abbreviate-filename file))
+        (parsed (ange-ftp-ftp-name short))
+        host-type func)
     (if parsed
        (setq host-type (ange-ftp-host-type (car parsed))
              func (cdr (assq (ange-ftp-host-type (car parsed))