diff options
| author | Michael Albinus | 2019-08-08 15:42:06 +0200 |
|---|---|---|
| committer | Michael Albinus | 2019-08-08 15:42:06 +0200 |
| commit | 4084c16090d24e375d198c0f0e65b76afb6049a0 (patch) | |
| tree | 5f90e0bf9501a05fb22c5b71af3f93c9187fbe2e | |
| parent | 2c0f6c3540ccad4b5832e9e00ece483a6a456bbb (diff) | |
| download | emacs-4084c16090d24e375d198c0f0e65b76afb6049a0.tar.gz emacs-4084c16090d24e375d198c0f0e65b76afb6049a0.zip | |
Suppress false alarm in Tramp
* lisp/net/tramp.el (tramp-dissect-file-name): Suppress false alarm.
| -rw-r--r-- | lisp/net/tramp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 77d727e2f2f..7bae4347232 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el | |||
| @@ -1440,7 +1440,7 @@ default values are used." | |||
| 1440 | :method method :user user :domain domain :host host | 1440 | :method method :user user :domain domain :host host |
| 1441 | :port port :localname localname :hop hop)) | 1441 | :port port :localname localname :hop hop)) |
| 1442 | ;; The method must be known. | 1442 | ;; The method must be known. |
| 1443 | (unless (or (tramp-completion-mode-p) | 1443 | (unless (or nodefault (tramp-completion-mode-p) |
| 1444 | (string-equal method tramp-default-method-marker) | 1444 | (string-equal method tramp-default-method-marker) |
| 1445 | (assoc method tramp-methods)) | 1445 | (assoc method tramp-methods)) |
| 1446 | (tramp-user-error | 1446 | (tramp-user-error |