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 | |
| 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.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/net/tramp.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 22b93e2e079..a8ba7ded3f1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-05-09 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * net/tramp.el (tramp-register-file-name-handlers): Enable Tramp | ||
| 4 | completion also when ido is loaded. | ||
| 5 | |||
| 1 | 2006-05-09 Masatake YAMATO <jet@gyve.org> | 6 | 2006-05-09 Masatake YAMATO <jet@gyve.org> |
| 2 | 7 | ||
| 3 | * font-lock.el (cpp-font-lock-keywords-source-directives): Addded | 8 | * font-lock.el (cpp-font-lock-keywords-source-directives): Addded |
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)) |