Function: org-eww-goto-next-url-property-change
org-eww-goto-next-url-property-change is a byte-compiled function
defined in ol-eww.el.gz.
Signature
(org-eww-goto-next-url-property-change)
Documentation
Move to the start of next link if exists.
Otherwise point is not moved. Return point.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ol-eww.el.gz
;; Some auxiliary functions concerning links in Eww buffers
(defun org-eww-goto-next-url-property-change ()
"Move to the start of next link if exists.
Otherwise point is not moved. Return point."
(goto-char
(or (next-single-property-change (point) 'shr-url)
(point))))