diff options
| -rw-r--r-- | lisp/ChangeLog | 12 | ||||
| -rw-r--r-- | lisp/net/tramp-cmds.el | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index bb2855cbd2b..0ac85bf8ceb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2009-04-14 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * net/tramp.el (tramp-handle-dired-recursive-delete-directory): | ||
| 4 | Fix an error in flushing cache data. | ||
| 5 | (tramp-handle-process-file): Flush all file cache values for the | ||
| 6 | connection, because the remote process could have changed them. | ||
| 7 | Suggested by Stefan Monnier <monnier@iro.umontreal.ca>. | ||
| 8 | Handle QUIT. | ||
| 9 | |||
| 10 | * net/tramp-cmds.el (tramp-cleanup-connection): Flush cache data | ||
| 11 | of directory "". | ||
| 12 | |||
| 1 | 2009-04-14 Stefan Monnier <monnier@iro.umontreal.ca> | 13 | 2009-04-14 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 14 | ||
| 3 | * minibuffer.el (completion--try-word-completion): Don't disable | 15 | * minibuffer.el (completion--try-word-completion): Don't disable |
diff --git a/lisp/net/tramp-cmds.el b/lisp/net/tramp-cmds.el index 61a4791eb40..4f159ac4246 100644 --- a/lisp/net/tramp-cmds.el +++ b/lisp/net/tramp-cmds.el | |||
| @@ -84,7 +84,7 @@ When called interactively, a Tramp connection has to be selected." | |||
| 84 | (tramp-clear-passwd vec) | 84 | (tramp-clear-passwd vec) |
| 85 | 85 | ||
| 86 | ;; Flush file cache. | 86 | ;; Flush file cache. |
| 87 | (tramp-flush-directory-property vec "/") | 87 | (tramp-flush-directory-property vec "") |
| 88 | 88 | ||
| 89 | ;; Flush connection cache. | 89 | ;; Flush connection cache. |
| 90 | (tramp-flush-connection-property (tramp-get-connection-process vec)) | 90 | (tramp-flush-connection-property (tramp-get-connection-process vec)) |