Function: hyrolo-to-next-entry

hyrolo-to-next-entry is a byte-compiled function defined in hyrolo.el.

Signature

(hyrolo-to-next-entry)

Documentation

Move point to next entry or hdr in a hyrolo-mode match buffer and return t.

If no such entry, don't move and return nil.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260822.1645/hyrolo.el
(defun hyrolo-to-next-entry ()
  "Move point to next entry or hdr in a `hyrolo-mode' match buffer and return t.
If no such entry, don't move and return nil."
  (let (found)
    (while (and (setq found (/= (point) (goto-char (or (next-single-property-change
							(point) :hyrolo-level)
						       (point)))))
		(not (get-text-property (point) :hyrolo-level))))
    found))