aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Verona2012-12-18 14:48:03 +0100
committerJoakim Verona2012-12-18 14:48:03 +0100
commit75e1383456bb6f5754f406c5cc0262e7ca8faf2b (patch)
treee3a7472f51fe0a1012c863d1268e169be65c42e4
parent8b90f29d1170313d9f75e676686e7c1a8589793d (diff)
parente0d01ef3f862544762cf045a0524bdd062b98f6f (diff)
downloademacs-75e1383456bb6f5754f406c5cc0262e7ca8faf2b.tar.gz
emacs-75e1383456bb6f5754f406c5cc0262e7ca8faf2b.zip
auto upstream
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/net/tramp.el5
2 files changed, 11 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9d05f2fcc26..39fa4b2ef49 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12012-12-18 Michael Albinus <michael.albinus@gmx.de>
2
3 * net/tramp.el (tramp-error-with-buffer): Give a hint to use
4 `tramp-cleanup-this-connection', when the process has died.
5 (Bug#13151)
6
12012-12-17 Stefan Monnier <monnier@iro.umontreal.ca> 72012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
2 8
3 * icomplete.el (icomplete-completions): Also use … to truncate prefix. 9 * icomplete.el (icomplete-completions): Also use … to truncate prefix.
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el
index a4be6eab41f..bc220a33b2a 100644
--- a/lisp/net/tramp.el
+++ b/lisp/net/tramp.el
@@ -1455,6 +1455,11 @@ an input event arrives. The other arguments are passed to `tramp-error'."
1455 (or (and (bufferp buffer) buffer) 1455 (or (and (bufferp buffer) buffer)
1456 (and (processp vec-or-proc) (process-buffer vec-or-proc)) 1456 (and (processp vec-or-proc) (process-buffer vec-or-proc))
1457 (tramp-get-connection-buffer vec-or-proc))) 1457 (tramp-get-connection-buffer vec-or-proc)))
1458 (when (string-equal fmt-string "Process died")
1459 (message
1460 "%s\n %s"
1461 "Tramp failed to connect. If this happens repeatedly, try"
1462 "`M-x tramp-cleanup-this-connection'"))
1458 (sit-for 30)))))) 1463 (sit-for 30))))))
1459 1464
1460(defmacro with-parsed-tramp-file-name (filename var &rest body) 1465(defmacro with-parsed-tramp-file-name (filename var &rest body)