* lisp/net/tramp.el (tramp-completion-file-name-regexp-unified):
Extend this regexp to match also "/".
;;;###autoload
(defconst tramp-completion-file-name-regexp-unified
(concat
- "\\`"
+ "\\`/\\("
;; Optional multi hop.
"\\([^/|:]+:[^/|:]*|\\)*"
;; Last hop.
"[^/|:]+")
;; Method separator, user name and host name.
"\\(:[^/|:]*\\)?"
- "\\'")
+ "\\)?\\'")
"Value for `tramp-completion-file-name-regexp' for unified remoting.
See `tramp-file-name-structure' for more explanations.