mirror of
https://git.freebsd.org/ports.git
synced 2025-06-20 20:20:30 -04:00
- Add a patch to ignore completion-mode check because in my environment, this check prevents completion in some situation.
22 lines
660 B
EmacsLisp
22 lines
660 B
EmacsLisp
--- lisp/tramp.el.orig Sat Sep 23 19:12:34 2006
|
|
+++ lisp/tramp.el Sat Sep 23 19:13:19 2006
|
|
@@ -5922,8 +5922,8 @@
|
|
"Return the right method string to use.
|
|
This is METHOD, if non-nil. Otherwise, do a lookup in
|
|
`tramp-default-method-alist'."
|
|
- (if (tramp-completion-mode)
|
|
- method
|
|
+; (if (tramp-completion-mode)
|
|
+; method
|
|
(or method
|
|
(let ((choices tramp-default-method-alist)
|
|
lmethod item)
|
|
@@ -5934,7 +5934,7 @@
|
|
(setq lmethod (nth 2 item))
|
|
(setq choices nil)))
|
|
lmethod)
|
|
- tramp-default-method)))
|
|
+ tramp-default-method));)
|
|
|
|
(defsubst tramp-find-user (method user host)
|
|
"Return the right user string to use.
|