diff options
| author | Michael Albinus | 2006-05-09 04:26:23 +0000 |
|---|---|---|
| committer | Michael Albinus | 2006-05-09 04:26:23 +0000 |
| commit | b5bbf8f27d22c4036006edd64ae35398e4107737 (patch) | |
| tree | 82eafb0e3fe62fe927ec720bbe5ad5012b151775 /lisp/net | |
| parent | 8c8b11644662d5c96c3ff71998e4a0dab53b87d9 (diff) | |
| download | emacs-b5bbf8f27d22c4036006edd64ae35398e4107737.tar.gz emacs-b5bbf8f27d22c4036006edd64ae35398e4107737.zip | |
* net/tramp.el (tramp-register-file-name-handlers): Enable Tramp
completion also when ido is loaded.
Diffstat (limited to 'lisp/net')
| -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 6e166aa2393..2ebc4d0b45e 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el | |||
| @@ -4331,7 +4331,7 @@ Falls back to normal file name handler if no tramp file name handler exists." | |||
| 4331 | "Add tramp file name handlers to `file-name-handler-alist'." | 4331 | "Add tramp file name handlers to `file-name-handler-alist'." |
| 4332 | (add-to-list 'file-name-handler-alist | 4332 | (add-to-list 'file-name-handler-alist |
| 4333 | (cons tramp-file-name-regexp 'tramp-file-name-handler)) | 4333 | (cons tramp-file-name-regexp 'tramp-file-name-handler)) |
| 4334 | (when partial-completion-mode | 4334 | (when (or partial-completion-mode (featurep 'ido)) |
| 4335 | (add-to-list 'file-name-handler-alist | 4335 | (add-to-list 'file-name-handler-alist |
| 4336 | (cons tramp-completion-file-name-regexp | 4336 | (cons tramp-completion-file-name-regexp |
| 4337 | 'tramp-completion-file-name-handler)) | 4337 | 'tramp-completion-file-name-handler)) |