diff options
| author | Michael Albinus | 2011-02-28 11:58:59 +0100 |
|---|---|---|
| committer | Michael Albinus | 2011-02-28 11:58:59 +0100 |
| commit | 22b300dea0c02b7b7ce32a399ceec3ee603b2bed (patch) | |
| tree | d3740fc64bc96ea6db507dc61f92372e658cf502 | |
| parent | 584a2773996c7f4cd9d84ede8d7817328c88e765 (diff) | |
| download | emacs-22b300dea0c02b7b7ce32a399ceec3ee603b2bed.tar.gz emacs-22b300dea0c02b7b7ce32a399ceec3ee603b2bed.zip | |
* net/tramp-cmds.el (tramp-append-tramp-buffers): Dump load-path shadows.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/net/tramp-cmds.el | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 05541c793d9..83b29a7e55c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-02-28 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * net/tramp-cmds.el (tramp-append-tramp-buffers): Dump load-path | ||
| 4 | shadows. | ||
| 5 | |||
| 1 | 2011-02-28 Antoine Levitt <antoine.levitt@gmail.com> (tiny change) | 6 | 2011-02-28 Antoine Levitt <antoine.levitt@gmail.com> (tiny change) |
| 2 | 7 | ||
| 3 | * dired-x.el (dired-guess-shell-alist-default): Add rar and 7z. | 8 | * dired-x.el (dired-guess-shell-alist-default): Add rar and 7z. |
diff --git a/lisp/net/tramp-cmds.el b/lisp/net/tramp-cmds.el index 7d266ad17d7..58f1e2c6a9e 100644 --- a/lisp/net/tramp-cmds.el +++ b/lisp/net/tramp-cmds.el | |||
| @@ -281,6 +281,12 @@ buffer in your bug report. | |||
| 281 | (insert ")\n")) | 281 | (insert ")\n")) |
| 282 | (insert-buffer-substring elbuf))) | 282 | (insert-buffer-substring elbuf))) |
| 283 | 283 | ||
| 284 | ;; Dump load-path shadows. | ||
| 285 | (insert "\nload-path shadows:\n==================\n") | ||
| 286 | (ignore-errors | ||
| 287 | (mapc (lambda (x) (when (string-match "tramp" x) (insert x "\n"))) | ||
| 288 | (split-string (list-load-path-shadows t) "\n"))) | ||
| 289 | |||
| 284 | ;; Append buffers only when we are in message mode. | 290 | ;; Append buffers only when we are in message mode. |
| 285 | (when (and | 291 | (when (and |
| 286 | (eq major-mode 'message-mode) | 292 | (eq major-mode 'message-mode) |