summaryrefslogtreecommitdiff
path: root/lisp/net/tramp-adb.el
diff options
context:
space:
mode:
authorMichael Albinus <michael.albinus@gmx.de>2021-10-14 14:32:47 +0200
committerMichael Albinus <michael.albinus@gmx.de>2021-10-14 14:32:47 +0200
commit9ff6999a060244c7726752f5cb07e8c8d1218f41 (patch)
tree2f026bbb61606867d816251fca85d8f40f13fe94 /lisp/net/tramp-adb.el
parentcf95962092bebbe623180b5480c4876a6860f44e (diff)
downloademacs-9ff6999a060244c7726752f5cb07e8c8d1218f41.tar.gz
emacs-9ff6999a060244c7726752f5cb07e8c8d1218f41.tar.bz2
emacs-9ff6999a060244c7726752f5cb07e8c8d1218f41.zip
Accept process-filter t in Tramp
* lisp/net/tramp.el (tramp-handle-make-process): * lisp/net/tramp-adb.el (tramp-adb-handle-make-process): * lisp/net/tramp-sh.el (tramp-sh-handle-make-process): Filter can be t. * test/lisp/net/tramp-tests.el (tramp-test29-start-file-process) (tramp-test30-make-process): Test filter equal t.
Diffstat (limited to 'lisp/net/tramp-adb.el')
-rw-r--r--lisp/net/tramp-adb.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/tramp-adb.el b/lisp/net/tramp-adb.el
index 63ffb2d057b..6d8bed1d786 100644
--- a/lisp/net/tramp-adb.el
+++ b/lisp/net/tramp-adb.el
@@ -947,7 +947,7 @@ implementation will be used."
(setq connection-type 'pty))
(unless (memq connection-type '(nil pipe pty))
(signal 'wrong-type-argument (list #'symbolp connection-type)))
- (unless (or (null filter) (functionp filter))
+ (unless (or (null filter) (eq filter t) (functionp filter))
(signal 'wrong-type-argument (list #'functionp filter)))
(unless (or (null sentinel) (functionp sentinel))
(signal 'wrong-type-argument (list #'functionp sentinel)))