diff options
| author | Michael Albinus | 2009-10-03 12:36:21 +0000 |
|---|---|---|
| committer | Michael Albinus | 2009-10-03 12:36:21 +0000 |
| commit | 1b8d1cc7b6ae56fb8d4b3e51b716d5c788bf5663 (patch) | |
| tree | 4cd1dbcf1cba90d05644c706fc093e4a7b7ebdff | |
| parent | 920fd1fc7fa70b687212b780e40003bf4f8b326a (diff) | |
| download | emacs-1b8d1cc7b6ae56fb8d4b3e51b716d5c788bf5663.tar.gz emacs-1b8d1cc7b6ae56fb8d4b3e51b716d5c788bf5663.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/net/tramp-ftp.el | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7a0fa0526d3..ab312990347 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2009-10-03 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * net/tramp-ftp.el (tramp-ftp-file-name-handler): Disable | ||
| 4 | `file-name-handler-alist' when loading 'ange-ftp. Otherwise, | ||
| 5 | there could be recursive loading when `default-directory' is a | ||
| 6 | remote file name. (Bug#4614) | ||
| 7 | |||
| 1 | 2009-10-03 Glenn Morris <rgm@gnu.org> | 8 | 2009-10-03 Glenn Morris <rgm@gnu.org> |
| 2 | 9 | ||
| 3 | * calendar/calendar.el (calendar-basic-setup): Handle the case where | 10 | * calendar/calendar.el (calendar-basic-setup): Handle the case where |
diff --git a/lisp/net/tramp-ftp.el b/lisp/net/tramp-ftp.el index eed7f92b0e9..c2a04efbc19 100644 --- a/lisp/net/tramp-ftp.el +++ b/lisp/net/tramp-ftp.el | |||
| @@ -134,7 +134,7 @@ First arg specifies the OPERATION, second arg is a list of arguments to | |||
| 134 | pass to the OPERATION." | 134 | pass to the OPERATION." |
| 135 | (save-match-data | 135 | (save-match-data |
| 136 | (or (boundp 'ange-ftp-name-format) | 136 | (or (boundp 'ange-ftp-name-format) |
| 137 | (require 'ange-ftp)) | 137 | (let (file-name-handler-alist) (require 'ange-ftp))) |
| 138 | (let ((ange-ftp-name-format | 138 | (let ((ange-ftp-name-format |
| 139 | (list (nth 0 tramp-file-name-structure) | 139 | (list (nth 0 tramp-file-name-structure) |
| 140 | (nth 3 tramp-file-name-structure) | 140 | (nth 3 tramp-file-name-structure) |