mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-28 07:50:48 -08:00
Fix Bug#33141
* lisp/net/tramp.el (tramp-make-tramp-file-name): Avoid check for empty method with simplified `tramp-syntax'. (Bug#33141)
This commit is contained in:
parent
070e82b96b
commit
b8b42c2315
1 changed files with 3 additions and 1 deletions
|
|
@ -1374,7 +1374,9 @@ default values are used."
|
|||
(method user domain host port localname &optional hop)
|
||||
"Constructs a Tramp file name from METHOD, USER, HOST and LOCALNAME.
|
||||
When not nil, optional DOMAIN, PORT and HOP are used."
|
||||
(when (zerop (length method))
|
||||
;; Unless `tramp-syntax' is `simplified', we need a method.
|
||||
(when (and (not (zerop (length tramp-postfix-method-format)))
|
||||
(zerop (length method)))
|
||||
(signal 'wrong-type-argument (list 'stringp method)))
|
||||
(concat tramp-prefix-format hop
|
||||
(unless (zerop (length tramp-postfix-method-format))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue