diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2019-04-19 16:29:44 +0200 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2019-04-19 16:29:44 +0200 |
commit | 85b4441472a443dd8fd053d7b088b1e3667347d3 (patch) | |
tree | 351b562a9b2b5db883b960a724b2725cbd5be714 /lisp/net/tramp-adb.el | |
parent | d3385c911f793b1048c28c967d74e47a78950ecf (diff) | |
download | emacs-85b4441472a443dd8fd053d7b088b1e3667347d3.tar.gz |
* lisp/net/tramp-adb.el (tramp-adb-prompt): Remove repetition of expression
matching an empty string.
Diffstat (limited to 'lisp/net/tramp-adb.el')
-rw-r--r-- | lisp/net/tramp-adb.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/tramp-adb.el b/lisp/net/tramp-adb.el index 71d7f61b91c..bd66ab44567 100644 --- a/lisp/net/tramp-adb.el +++ b/lisp/net/tramp-adb.el @@ -53,7 +53,7 @@ It is used for TCP/IP devices." "When this method name is used, forward all calls to Android Debug Bridge.") (defcustom tramp-adb-prompt - "^[[:digit:]]*|?\\(?:[[:alnum:]\e;[]*@?[[:alnum:]]*[^#\\$]*\\)?[#\\$][[:space:]]" + "^[[:digit:]]*|?[[:alnum:]\e;[]*@?[[:alnum:]]*[^#\\$]*[#\\$][[:space:]]" "Regexp used as prompt in almquist shell." :type 'string :version "24.4" |