summaryrefslogtreecommitdiff
path: root/lisp/net
diff options
context:
space:
mode:
authorMattias EngdegÄrd <mattiase@acm.org>2019-12-27 10:25:05 +0100
committerMichael Albinus <michael.albinus@gmx.de>2019-12-27 10:25:05 +0100
commitd627fc7d55f4c1f61bdca970889f5009933ab742 (patch)
treec71ee7955ea1c6119c86a9c22a4d98d6cb8a9ef8 /lisp/net
parent8aad80d6613576faa8910336863474d485e1c030 (diff)
downloademacs-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.el2
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)