diff options
author | Mattias EngdegÄrd <mattiase@acm.org> | 2022-02-03 12:15:06 +0100 |
---|---|---|
committer | Mattias EngdegÄrd <mattiase@acm.org> | 2022-02-03 12:17:23 +0100 |
commit | 1b0342628e565ff6fbb3ad1e374a2203d9d4a8ae (patch) | |
tree | 23e08183c533e465612dcc7707cef35d32c205e4 | |
parent | abd59ad923452cf342ba9d5eadf52bea02a261b0 (diff) | |
download | emacs-1b0342628e565ff6fbb3ad1e374a2203d9d4a8ae.tar.gz emacs-1b0342628e565ff6fbb3ad1e374a2203d9d4a8ae.tar.bz2 emacs-1b0342628e565ff6fbb3ad1e374a2203d9d4a8ae.zip |
Don't use `string-search` in soap-client (bug#53744)
* lisp/net/soap-client.el (soap-decode-xs-complex-type):
Since soap-client is a core ELPA package and may be used with
Emacs versions older than 28, it cannot use `string-search`;
revert to `string-match`.
-rw-r--r-- | lisp/net/soap-client.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/soap-client.el b/lisp/net/soap-client.el index d2092633d89..718cff829cf 100644 --- a/lisp/net/soap-client.el +++ b/lisp/net/soap-client.el @@ -1937,7 +1937,7 @@ This is a specialization of `soap-decode-type' for (e-name (soap-xs-element-name element)) ;; Heuristic: guess if we need to decode using local ;; namespaces. - (use-fq-names (string-search ":" (symbol-name (car node)))) + (use-fq-names (string-match ":" (symbol-name (car node)))) (children (if e-name (if use-fq-names ;; Find relevant children |