aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/net/tramp-adb.el4
-rw-r--r--lisp/net/tramp-sh.el4
2 files changed, 0 insertions, 8 deletions
diff --git a/lisp/net/tramp-adb.el b/lisp/net/tramp-adb.el
index f3aa55f16f5..71d7f61b91c 100644
--- a/lisp/net/tramp-adb.el
+++ b/lisp/net/tramp-adb.el
@@ -934,7 +934,6 @@ PRESERVE-UID-GID and PRESERVE-EXTENDED-ATTRIBUTES are completely ignored."
934 (command (plist-get args :command)) 934 (command (plist-get args :command))
935 (coding (plist-get args :coding)) 935 (coding (plist-get args :coding))
936 (noquery (plist-get args :noquery)) 936 (noquery (plist-get args :noquery))
937 (stop (plist-get args :stop))
938 (connection-type (plist-get args :connection-type)) 937 (connection-type (plist-get args :connection-type))
939 (filter (plist-get args :filter)) 938 (filter (plist-get args :filter))
940 (sentinel (plist-get args :sentinel)) 939 (sentinel (plist-get args :sentinel))
@@ -1010,9 +1009,6 @@ PRESERVE-UID-GID and PRESERVE-EXTENDED-ATTRIBUTES are completely ignored."
1010 ;; Send the command. 1009 ;; Send the command.
1011 (let* ((p (tramp-get-connection-process v))) 1010 (let* ((p (tramp-get-connection-process v)))
1012 (tramp-adb-send-command v command nil t) ; nooutput 1011 (tramp-adb-send-command v command nil t) ; nooutput
1013 ;; Stop process if indicated.
1014 (when stop
1015 (stop-process p))
1016 ;; Set sentinel and filter. 1012 ;; Set sentinel and filter.
1017 (when sentinel 1013 (when sentinel
1018 (set-process-sentinel p sentinel)) 1014 (set-process-sentinel p sentinel))
diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el
index d9751a9f973..dc64726e211 100644
--- a/lisp/net/tramp-sh.el
+++ b/lisp/net/tramp-sh.el
@@ -2781,7 +2781,6 @@ the result will be a local, non-Tramp, file name."
2781 (command (plist-get args :command)) 2781 (command (plist-get args :command))
2782 (coding (plist-get args :coding)) 2782 (coding (plist-get args :coding))
2783 (noquery (plist-get args :noquery)) 2783 (noquery (plist-get args :noquery))
2784 (stop (plist-get args :stop))
2785 (connection-type (plist-get args :connection-type)) 2784 (connection-type (plist-get args :connection-type))
2786 (filter (plist-get args :filter)) 2785 (filter (plist-get args :filter))
2787 (sentinel (plist-get args :sentinel)) 2786 (sentinel (plist-get args :sentinel))
@@ -2933,9 +2932,6 @@ the result will be a local, non-Tramp, file name."
2933 v 'file-error 2932 v 'file-error
2934 "pty association is not supported for `%s'" 2933 "pty association is not supported for `%s'"
2935 name)))) 2934 name))))
2936 ;; Stop process if indicated.
2937 (when stop
2938 (stop-process p))
2939 ;; Set sentinel and filter. 2935 ;; Set sentinel and filter.
2940 (when sentinel 2936 (when sentinel
2941 (set-process-sentinel p sentinel)) 2937 (set-process-sentinel p sentinel))