aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2014-11-15 21:18:58 +0100
committerLars Magne Ingebrigtsen2014-11-15 21:19:12 +0100
commite68a171ebddb0b3d1c7a11e55a2983c9690f2d5f (patch)
tree7816cbcd738baa788963be7994d95fe4fd53d8d2
parent9ae5396b8f152a4ab32f1d56239f3f5e3967da0b (diff)
downloademacs-e68a171ebddb0b3d1c7a11e55a2983c9690f2d5f.tar.gz
emacs-e68a171ebddb0b3d1c7a11e55a2983c9690f2d5f.zip
* net/eww.el (eww-search-words): Mention `eww-search-prefix'.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/net/eww.el3
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5c7533f1073..5eb4e3a8a7a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12014-11-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
2
3 * net/eww.el (eww-search-words): Mention `eww-search-prefix'.
4
12014-11-15 Fabián Ezequiel Gallina <fgallina@gnu.org> 52014-11-15 Fabián Ezequiel Gallina <fgallina@gnu.org>
2 6
3 * progmodes/python.el (python-eldoc-setup-code): Enhance string 7 * progmodes/python.el (python-eldoc-setup-code): Enhance string
diff --git a/lisp/net/eww.el b/lisp/net/eww.el
index af11e97043e..93aecb6895c 100644
--- a/lisp/net/eww.el
+++ b/lisp/net/eww.el
@@ -200,7 +200,8 @@ word(s) will be searched for via `eww-search-prefix'."
200 200
201;;;###autoload 201;;;###autoload
202(defun eww-search-words (&optional beg end) 202(defun eww-search-words (&optional beg end)
203 "Search the web for the text between the point and marker." 203 "Search the web for the text between the point and marker.
204See the `eww-search-prefix' variable for the search engine used."
204 (interactive "r") 205 (interactive "r")
205 (eww (buffer-substring beg end))) 206 (eww (buffer-substring beg end)))
206 207