Function: hyrolo-bbdb-entry-format
hyrolo-bbdb-entry-format is a byte-compiled function defined in
hyrolo.el.
Signature
(hyrolo-bbdb-entry-format START END)
Documentation
Format for display the bbdb entry region of START to END in match buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
(defun hyrolo-bbdb-entry-format (start end)
"Format for display the bbdb entry region of START to END in match buffer."
;; Caller will return to prior point
(goto-char start)
(save-restriction
(narrow-to-region start end)
(let ((v (read)))
(format "* %s: %s: <%s>\n" (elt v 1) (elt v 0) (car (elt v 7))))))