emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r111624: * net/tramp.el (tramp-proces


From: Michael Albinus
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r111624: * net/tramp.el (tramp-process-connection-type): Fix docstring.
Date: Wed, 30 Jan 2013 10:16:16 +0100
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111624
committer: Michael Albinus <address@hidden
branch nick: trunk
timestamp: Wed 2013-01-30 10:16:16 +0100
message:
  * net/tramp.el (tramp-process-connection-type): Fix docstring.
  (tramp-completion-reread-directory-timeout): Fix type.
  (tramp-connection-min-time-diff): New defcustom.
  
  * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
modified:
  lisp/ChangeLog
  lisp/net/tramp-sh.el
  lisp/net/tramp.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-01-30 08:07:37 +0000
+++ b/lisp/ChangeLog    2013-01-30 09:16:16 +0000
@@ -1,3 +1,11 @@
+2013-01-30  Michael Albinus  <address@hidden>
+
+       * net/tramp.el (tramp-process-connection-type): Fix docstring.
+       (tramp-completion-reread-directory-timeout): Fix type.
+       (tramp-connection-min-time-diff): New defcustom.
+
+       * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
+
 2013-01-30  Glenn Morris  <address@hidden>
 
        * imenu.el (imenu-default-create-index-function):

=== modified file 'lisp/net/tramp-sh.el'
--- a/lisp/net/tramp-sh.el      2013-01-30 07:37:12 +0000
+++ b/lisp/net/tramp-sh.el      2013-01-30 09:16:16 +0000
@@ -4357,7 +4357,7 @@
                              (car tramp-current-connection)))
                  (> (tramp-time-diff
                      (current-time) (cdr tramp-current-connection))
-                    5))
+                    (or tramp-connection-min-time-diff 0)))
        (throw 'suppress 'suppress))
 
       ;; If too much time has passed since last command was sent, look

=== modified file 'lisp/net/tramp.el'
--- a/lisp/net/tramp.el 2013-01-24 09:50:02 +0000
+++ b/lisp/net/tramp.el 2013-01-30 09:16:16 +0000
@@ -1018,11 +1018,25 @@
 ;; for an override of the system default.
 (defcustom tramp-process-connection-type t
   "Overrides `process-connection-type' for connections from Tramp.
-Tramp binds process-connection-type to the value given here before
+Tramp binds `process-connection-type' to the value given here before
 opening a connection to a remote host."
   :group 'tramp
   :type '(choice (const nil) (const t) (const pty)))
 
+(defcustom tramp-connection-min-time-diff 5
+  "Defines seconds between two consecutive connection attempts.
+This is necessary as self defense mechanism, in order to avoid
+yo-yo connection attempts when the remote host is unavailable.
+
+A value of 0 or `nil' suppresses this check.  This might be
+necessary, when several out-of-order copy operations are
+performed, or when several asynchronous processes will be started
+in a short time frame.  In those cases it is recommended to
+let-bind this variable."
+  :group 'tramp
+  :version "24.4"
+  :type '(choice (const nil) integer))
+
 (defcustom tramp-completion-reread-directory-timeout 10
   "Defines seconds since last remote command before rereading a directory.
 A remote directory might have changed its contents.  In order to
@@ -1033,7 +1047,7 @@
 would require an immediate reread during filename completion, `nil'
 means to use always cached values for the directory contents."
   :group 'tramp
-  :type '(choice (const nil) integer))
+  :type '(choice (const nil) (const t) integer))
 
 ;;; Internal Variables:
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]