Function: shr-previous-link
shr-previous-link is an interactive and byte-compiled function defined
in shr.el.gz.
Signature
(shr-previous-link)
Documentation
Skip to the previous link.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/shr.el.gz
(defun shr-previous-link ()
"Skip to the previous link."
(interactive)
(if (not (text-property-search-backward 'shr-tab-stop nil nil t))
(message "No previous link")
(message "%s" (get-text-property (point) 'help-echo))))