[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master 40145ba9719 2/2: ; Improve last change
From: |
Eli Zaretskii |
Subject: |
master 40145ba9719 2/2: ; Improve last change |
Date: |
Sat, 21 Dec 2024 03:58:19 -0500 (EST) |
branch: master
commit 40145ba971942eb8b2b9db1e28b513b1f3fdda6f
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>
; Improve last change
* lisp/net/eww.el (eww-search-confirm-send-region)
(eww-search-words): Doc fix.
(eww-search-words): Improve wording of confirmation request.
(Bug#74218)
---
lisp/net/eww.el | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/lisp/net/eww.el b/lisp/net/eww.el
index 319b1e72fbb..842db3f27f4 100644
--- a/lisp/net/eww.el
+++ b/lisp/net/eww.el
@@ -53,8 +53,8 @@
:type 'string)
(defcustom eww-search-confirm-send-region t
- "Whether to confirm before sending a region to a search engine.
-Non-nil if EWW should ask confirmation before sending the
+ "Whether to ask for confirmation before sending the region to a search
engine.
+Non-nil if EWW should ask for confirmation before sending the
selected region to the configured search engine. This is the
default to mitigate the risk of accidental data leak. Set this
variable to nil to send the region to the search engine
@@ -608,8 +608,9 @@ new buffer instead of reusing the default EWW buffer."
;;;###autoload
(defun eww-search-words ()
"Search the web for the text in the region.
-If region is active (and not whitespace), search the web for
-the text between region beginning and end. Else, prompt the
+If region is active (and not whitespace), search the web for the
+text between region beginning and end, subject to user's confirmation
+controlled by `eww-search-confirm-send-region'. Else, prompt the
user for a search string. See the variable `eww-search-prefix'
for the search engine used."
(interactive)
@@ -620,7 +621,7 @@ for the search engine used."
(or (not eww-search-confirm-send-region)
(yes-or-no-p
(format-message
- "Really send the entire region to the search engine? ")))
+ "Really send the region to the search engine? ")))
(eww region-string))
(call-interactively #'eww)))
(call-interactively #'eww)))