mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-19 03:17:36 +00:00
* net/tramp.el (tramp-make-tramp-temp-file): Use
`tramp-drop-volume-letter' for the local file name part.
This commit is contained in:
parent
76be286d64
commit
113e2a8447
2 changed files with 8 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2008-04-02 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
* net/tramp.el (tramp-make-tramp-temp-file): Use
|
||||
`tramp-drop-volume-letter' for the local file name part.
|
||||
|
||||
2008-04-02 Dan Nicolaescu <dann@ics.uci.edu>
|
||||
|
||||
* progmodes/sh-script.el (sh-mode-map): Rename the menu. Add :help.
|
||||
|
|
|
|||
|
|
@ -1965,8 +1965,9 @@ Return the local name of the temporary file."
|
|||
(tramp-file-name-method vec)
|
||||
(tramp-file-name-user vec)
|
||||
(tramp-file-name-host vec)
|
||||
(expand-file-name
|
||||
tramp-temp-name-prefix (tramp-get-remote-tmpdir vec))))
|
||||
(tramp-drop-volume-letter
|
||||
(expand-file-name
|
||||
tramp-temp-name-prefix (tramp-get-remote-tmpdir vec)))))
|
||||
result)
|
||||
(while (not result)
|
||||
;; `make-temp-file' would be the natural choice for
|
||||
|
|
|
|||
Loading…
Reference in a new issue