mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-27 07:37:33 +00:00
* net/tramp.el (tramp-local-host-p): Use `tramp-file-name-host'
instead of `tramp-file-name-real-host'.
This commit is contained in:
parent
b58c3770c7
commit
c992abdbc6
@ -6731,7 +6731,9 @@ necessary only. This function will be used in file name completion."
|
||||
|
||||
(defun tramp-local-host-p (vec)
|
||||
"Return t if this points to the local host, nil otherwise."
|
||||
(let ((host (tramp-file-name-real-host vec)))
|
||||
;; We cannot use `tramp-file-name-real-host'. A port is an
|
||||
;; indication for an ssh tunnel or alike.
|
||||
(let ((host (tramp-file-name-host vec)))
|
||||
(and
|
||||
(stringp host)
|
||||
(string-match
|
||||
|
Loading…
Reference in New Issue
Block a user