Function: hyrolo-to-previous-loc
hyrolo-to-previous-loc is an interactive and byte-compiled function
defined in hyrolo.el.
Signature
(hyrolo-to-previous-loc)
Documentation
Move to previous file/buffer location header in HyRolo display matches buffer.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
(defun hyrolo-to-previous-loc ()
"Move to previous file/buffer location header in HyRolo display matches buffer."
(interactive)
(let ((opoint (point)))
(beginning-of-line)
(unless (re-search-backward (concat "^" hbut:source-prefix) nil t)
(goto-char opoint)
(when (called-interactively-p 'interactive)
(message "No previous file/buffer location") (beep)))))