Function: eww-isearch-next-buffer

eww-isearch-next-buffer is a byte-compiled function defined in eww.el.gz.

Signature

(eww-isearch-next-buffer &optional BUFFER WRAP)

Documentation

Go to the next page to search using rel attribute for navigation.

Source Code

;; Defined in /usr/src/emacs/lisp/net/eww.el.gz
;;; Isearch support

(defun eww-isearch-next-buffer (&optional _buffer wrap)
  "Go to the next page to search using `rel' attribute for navigation."
  (let ((eww-retrieve-command 'sync))
    (if wrap
        (condition-case nil
	    (eww-top-url)
	  (error nil))
      (if isearch-forward
	  (eww-next-url)
        (eww-previous-url))))
  (current-buffer))