diff options
| author | Eli Zaretskii | 2020-09-29 18:07:44 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2020-09-29 18:07:44 +0300 |
| commit | 6f73cc357994c2776ff8cd4f12804ebb20d29efd (patch) | |
| tree | c8fb8d762ea13e26ad5d5b684405e87765826ff9 | |
| parent | ce0842a165d0496e08accd211eab711d7c1c3b87 (diff) | |
| download | emacs-6f73cc357994c2776ff8cd4f12804ebb20d29efd.tar.gz emacs-6f73cc357994c2776ff8cd4f12804ebb20d29efd.zip | |
; * lisp/net/eww.el (eww-search-words): Doc fix.
| -rw-r--r-- | lisp/net/eww.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/net/eww.el b/lisp/net/eww.el index 568b96f4d58..449618bd672 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el | |||
| @@ -363,11 +363,11 @@ the default EWW buffer." | |||
| 363 | 363 | ||
| 364 | ;;;###autoload | 364 | ;;;###autoload |
| 365 | (defun eww-search-words () | 365 | (defun eww-search-words () |
| 366 | "Search the web for the text between BEG and END. | 366 | "Search the web for the text in the region. |
| 367 | If region is active (and not whitespace), search the web for | 367 | If region is active (and not whitespace), search the web for |
| 368 | the text between BEG and END. Else, prompt the user for a search | 368 | the text between region beginning and end. Else, prompt the |
| 369 | string. See the `eww-search-prefix' variable for the search | 369 | user for a search string. See the variable `eww-search-prefix' |
| 370 | engine used." | 370 | for the search engine used." |
| 371 | (interactive) | 371 | (interactive) |
| 372 | (if (use-region-p) | 372 | (if (use-region-p) |
| 373 | (let ((region-string (buffer-substring (region-beginning) (region-end)))) | 373 | (let ((region-string (buffer-substring (region-beginning) (region-end)))) |