diff options
| author | Mattias EngdegÄrd | 2019-12-27 10:25:05 +0100 |
|---|---|---|
| committer | Michael Albinus | 2019-12-27 10:25:05 +0100 |
| commit | d627fc7d55f4c1f61bdca970889f5009933ab742 (patch) | |
| tree | c71ee7955ea1c6119c86a9c22a4d98d6cb8a9ef8 | |
| parent | 8aad80d6613576faa8910336863474d485e1c030 (diff) | |
| download | emacs-d627fc7d55f4c1f61bdca970889f5009933ab742.tar.gz 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.
| -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." | |||
| 58 | (defcustom tramp-adb-prompt | 58 | (defcustom tramp-adb-prompt |
| 59 | "^[[:digit:]]*|?[[:alnum:]\e;[]*@?[[:alnum:]]*[^#\\$]*[#\\$][[:space:]]" | 59 | "^[[:digit:]]*|?[[:alnum:]\e;[]*@?[[:alnum:]]*[^#\\$]*[#\\$][[:space:]]" |
| 60 | "Regexp used as prompt in almquist shell." | 60 | "Regexp used as prompt in almquist shell." |
| 61 | :type 'string | 61 | :type 'regexp |
| 62 | :version "24.4" | 62 | :version "24.4" |
| 63 | :group 'tramp) | 63 | :group 'tramp) |
| 64 | 64 | ||