aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2020-09-27 09:37:10 -0700
committerGlenn Morris2020-09-27 09:37:10 -0700
commitf2a6bbefa919c0fcde66c0a8fb54aa5fb499de65 (patch)
treef5c926c28a3cca0597bfc55eeab1c7a0e5591665
parentc8f295f50324d7612fe0c5d2dd27fc727f3719b4 (diff)
parent0b78785a9b5ff475ea65c67b686a1ac19e5d858a (diff)
downloademacs-f2a6bbefa919c0fcde66c0a8fb54aa5fb499de65.tar.gz
emacs-f2a6bbefa919c0fcde66c0a8fb54aa5fb499de65.zip
Merge from origin/emacs-27
0b78785a9b (origin/emacs-27) Minor copyedits in the Emacs user manual 0dfc6fdc1f Followup to a recent change in menu-bar.el 767713682c Enable "Continue Tags Search" menu item only when it can b... 4bb7532163 Fix soap-client URL
-rw-r--r--doc/emacs/emacs.texi7
-rw-r--r--lisp/fileloop.el3
-rw-r--r--lisp/menu-bar.el4
-rw-r--r--lisp/net/soap-client.el2
4 files changed, 11 insertions, 5 deletions
diff --git a/doc/emacs/emacs.texi b/doc/emacs/emacs.texi
index 566229b2f32..bd40e10052d 100644
--- a/doc/emacs/emacs.texi
+++ b/doc/emacs/emacs.texi
@@ -108,10 +108,9 @@ Cover art by Etienne Suvasa; cover design by Matt Lee.
108@node Top 108@node Top
109@top The Emacs Editor 109@top The Emacs Editor
110 110
111Emacs is the extensible, customizable, self-documenting real-time 111Emacs is the advanced, extensible, customizable, self-documenting
112display editor. This manual describes how to edit with Emacs and 112editor. This manual describes how to edit with Emacs and some of the
113some of the ways to customize it; it corresponds to GNU Emacs version 113ways to customize it; it corresponds to GNU Emacs version @value{EMACSVER}.
114@value{EMACSVER}.
115 114
116@c See 'manual-html-mono' and 'manual-html-node' in admin/admin.el. 115@c See 'manual-html-mono' and 'manual-html-node' in admin/admin.el.
117@ifset WWW_GNU_ORG 116@ifset WWW_GNU_ORG
diff --git a/lisp/fileloop.el b/lisp/fileloop.el
index 458c25a49b0..b778eca8e9b 100644
--- a/lisp/fileloop.el
+++ b/lisp/fileloop.el
@@ -57,6 +57,9 @@
57(defvar fileloop--iterator iter-empty) 57(defvar fileloop--iterator iter-empty)
58(defvar fileloop--scan-function 58(defvar fileloop--scan-function
59 (lambda () (user-error "No operation in progress"))) 59 (lambda () (user-error "No operation in progress")))
60;; If the default value below is changed, the :enable form of
61;; tags-continue and tags-repl-continue in menu-bar.el will have to be
62;; updated accordingly.
60(defvar fileloop--operate-function #'ignore) 63(defvar fileloop--operate-function #'ignore)
61(defvar fileloop--freshly-initialized nil) 64(defvar fileloop--freshly-initialized nil)
62 65
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el
index 1556ee290f1..d3e434aec90 100644
--- a/lisp/menu-bar.el
+++ b/lisp/menu-bar.el
@@ -333,6 +333,8 @@
333 333
334 (bindings--define-key menu [tags-continue] 334 (bindings--define-key menu [tags-continue]
335 '(menu-item "Continue Tags Search" fileloop-continue 335 '(menu-item "Continue Tags Search" fileloop-continue
336 :enable (and (featurep 'fileloop)
337 (not (eq fileloop--operate-function 'ignore)))
336 :help "Continue last tags search operation")) 338 :help "Continue last tags search operation"))
337 (bindings--define-key menu [tags-srch] 339 (bindings--define-key menu [tags-srch]
338 '(menu-item "Search Tagged Files..." tags-search 340 '(menu-item "Search Tagged Files..." tags-search
@@ -382,6 +384,8 @@
382 (let ((menu (make-sparse-keymap "Replace"))) 384 (let ((menu (make-sparse-keymap "Replace")))
383 (bindings--define-key menu [tags-repl-continue] 385 (bindings--define-key menu [tags-repl-continue]
384 '(menu-item "Continue Replace" fileloop-continue 386 '(menu-item "Continue Replace" fileloop-continue
387 :enable (and (featurep 'fileloop)
388 (not (eq fileloop--operate-function 'ignore)))
385 :help "Continue last tags replace operation")) 389 :help "Continue last tags replace operation"))
386 (bindings--define-key menu [tags-repl] 390 (bindings--define-key menu [tags-repl]
387 '(menu-item "Replace in Tagged Files..." tags-query-replace 391 '(menu-item "Replace in Tagged Files..." tags-query-replace
diff --git a/lisp/net/soap-client.el b/lisp/net/soap-client.el
index bb74f47a8b9..81bbc336dc3 100644
--- a/lisp/net/soap-client.el
+++ b/lisp/net/soap-client.el
@@ -3028,7 +3028,7 @@ SERVICE-URL should be provided when WS-Addressing is being used."
3028 (insert "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soap:Envelope\n") 3028 (insert "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soap:Envelope\n")
3029 (when (eq use 'encoded) 3029 (when (eq use 'encoded)
3030 (insert " soapenc:encodingStyle=\"\ 3030 (insert " soapenc:encodingStyle=\"\
3031https://schemas.xmlsoap.org/soap/encoding/\"\n")) 3031http://schemas.xmlsoap.org/soap/encoding/\"\n"))
3032 (dolist (nstag soap-encoded-namespaces) 3032 (dolist (nstag soap-encoded-namespaces)
3033 (insert " xmlns:" nstag "=\"") 3033 (insert " xmlns:" nstag "=\"")
3034 (let ((nsname (cdr (assoc nstag soap-well-known-xmlns)))) 3034 (let ((nsname (cdr (assoc nstag soap-well-known-xmlns))))