diff options
author | Mattias EngdegÄrd <mattiase@acm.org> | 2019-12-27 10:25:05 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2019-12-27 10:25:05 +0100 |
commit | d627fc7d55f4c1f61bdca970889f5009933ab742 (patch) | |
tree | c71ee7955ea1c6119c86a9c22a4d98d6cb8a9ef8 /lisp/net | |
parent | 8aad80d6613576faa8910336863474d485e1c030 (diff) | |
download | emacs-d627fc7d55f4c1f61bdca970889f5009933ab742.tar.gz emacs-d627fc7d55f4c1f61bdca970889f5009933ab742.tar.bz2 emacs-d627fc7d55f4c1f61bdca970889f5009933ab742.zip |
; 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.
Diffstat (limited to 'lisp/net')
-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 f0abb277965..300def103e3 100644 --- a/lisp/net/tramp-adb.el +++ b/lisp/net/tramp-adb.el @@ -58,7 +58,7 @@ It is used for TCP/IP devices." (defcustom tramp-adb-prompt "^[[:digit:]]*|?[[:alnum:]\e;[]*@?[[:alnum:]]*[^#\\$]*[#\\$][[:space:]]" "Regexp used as prompt in almquist shell." - :type 'string + :type 'regexp :version "24.4" :group 'tramp) |