1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-28 07:50:48 -08:00

; Use regexp type in tramp-adb-prompt (backport, do not merge)

* lisp/net/tramp-adb.el (tramp-adb-prompt): Use 'regexp' instead
of 'string' as type for values that are regexps in defcustom
declarations.
This commit is contained in:
Mattias Engdegård 2019-12-27 10:25:05 +01:00 committed by Michael Albinus
parent 8aad80d661
commit d627fc7d55

View file

@ -58,7 +58,7 @@ It is used for TCP/IP devices."
(defcustom tramp-adb-prompt (defcustom tramp-adb-prompt
"^[[:digit:]]*|?[[:alnum:]\e;[]*@?[[:alnum:]]*[^#\\$]*[#\\$][[:space:]]" "^[[:digit:]]*|?[[:alnum:]\e;[]*@?[[:alnum:]]*[^#\\$]*[#\\$][[:space:]]"
"Regexp used as prompt in almquist shell." "Regexp used as prompt in almquist shell."
:type 'string :type 'regexp
:version "24.4" :version "24.4"
:group 'tramp) :group 'tramp)