]> git.eshelyaron.com Git - emacs.git/commitdiff
Do not handle :stop in tramp-*-handle-make-process
authorMichael Albinus <michael.albinus@gmx.de>
Fri, 19 Apr 2019 12:28:20 +0000 (14:28 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Fri, 19 Apr 2019 12:28:20 +0000 (14:28 +0200)
* lisp/net/tramp-adb.el (tramp-adb-handle-make-process):
* lisp/net/tramp-sh.el (tramp-sh-handle-make-process): Do not
handle :stop anymore.

lisp/net/tramp-adb.el
lisp/net/tramp-sh.el

index f3aa55f16f52a2e8ed46b4c1bb05cff40bc2646b..71d7f61b91c80c18e04101fe4f0a5ed6e113f0cf 100644 (file)
@@ -934,7 +934,6 @@ PRESERVE-UID-GID and PRESERVE-EXTENDED-ATTRIBUTES are completely ignored."
            (command (plist-get args :command))
            (coding (plist-get args :coding))
            (noquery (plist-get args :noquery))
-           (stop (plist-get args :stop))
            (connection-type (plist-get args :connection-type))
            (filter (plist-get args :filter))
            (sentinel (plist-get args :sentinel))
@@ -1010,9 +1009,6 @@ PRESERVE-UID-GID and PRESERVE-EXTENDED-ATTRIBUTES are completely ignored."
                      ;; Send the command.
                      (let* ((p (tramp-get-connection-process v)))
                         (tramp-adb-send-command v command nil t) ; nooutput
-                       ;; Stop process if indicated.
-                       (when stop
-                         (stop-process p))
                        ;; Set sentinel and filter.
                        (when sentinel
                          (set-process-sentinel p sentinel))
index d9751a9f97371df9b9866985425723ae3f2a68a8..dc64726e211ff4700811b4e5ea67d015a124d05b 100644 (file)
@@ -2781,7 +2781,6 @@ the result will be a local, non-Tramp, file name."
            (command (plist-get args :command))
            (coding (plist-get args :coding))
            (noquery (plist-get args :noquery))
-           (stop (plist-get args :stop))
            (connection-type (plist-get args :connection-type))
            (filter (plist-get args :filter))
            (sentinel (plist-get args :sentinel))
@@ -2933,9 +2932,6 @@ the result will be a local, non-Tramp, file name."
                             v 'file-error
                             "pty association is not supported for `%s'"
                             name))))
-                     ;; Stop process if indicated.
-                     (when stop
-                       (stop-process p))
                      ;; Set sentinel and filter.
                      (when sentinel
                        (set-process-sentinel p sentinel))