diff options
| -rw-r--r-- | lisp/net/tramp-sh.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el index 2d253506dde..86e82d40929 100644 --- a/lisp/net/tramp-sh.el +++ b/lisp/net/tramp-sh.el | |||
| @@ -2547,7 +2547,11 @@ The method used must be an out-of-band method." | |||
| 2547 | "Like `make-directory' for Tramp files." | 2547 | "Like `make-directory' for Tramp files." |
| 2548 | (setq dir (expand-file-name dir)) | 2548 | (setq dir (expand-file-name dir)) |
| 2549 | (with-parsed-tramp-file-name dir nil | 2549 | (with-parsed-tramp-file-name dir nil |
| 2550 | (tramp-flush-directory-properties v (file-name-directory localname)) | 2550 | ;; When PARENTS is non-nil, DIR could be a chain of non-existent |
| 2551 | ;; directories a/b/c/... Instead of checking, we simply flush the | ||
| 2552 | ;; whole cache. | ||
| 2553 | (tramp-flush-directory-properties | ||
| 2554 | v (if parents "/" (file-name-directory localname))) | ||
| 2551 | (save-excursion | 2555 | (save-excursion |
| 2552 | (tramp-barf-unless-okay | 2556 | (tramp-barf-unless-okay |
| 2553 | v (format "%s %s" | 2557 | v (format "%s %s" |