1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 16:51:06 -07:00

* net/tramp-cmds.el (tramp-append-tramp-buffers): Dump load-path shadows.

This commit is contained in:
Michael Albinus 2011-02-28 11:58:59 +01:00
parent 584a277399
commit 22b300dea0
2 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2011-02-28 Michael Albinus <michael.albinus@gmx.de>
* net/tramp-cmds.el (tramp-append-tramp-buffers): Dump load-path
shadows.
2011-02-28 Antoine Levitt <antoine.levitt@gmail.com> (tiny change)
* dired-x.el (dired-guess-shell-alist-default): Add rar and 7z.

View file

@ -281,6 +281,12 @@ buffer in your bug report.
(insert ")\n"))
(insert-buffer-substring elbuf)))
;; Dump load-path shadows.
(insert "\nload-path shadows:\n==================\n")
(ignore-errors
(mapc (lambda (x) (when (string-match "tramp" x) (insert x "\n")))
(split-string (list-load-path-shadows t) "\n")))
;; Append buffers only when we are in message mode.
(when (and
(eq major-mode 'message-mode)