Function: hypb:locate-pathnames
hypb:locate-pathnames is a byte-compiled function defined in hypb.el.
Signature
(hypb:locate-pathnames)
Documentation
Return a space-separated string of pathnames in a *Locate* buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hypb.el
(defun hypb:locate-pathnames ()
"Return a space-separated string of pathnames in a *Locate* buffer."
(save-excursion
(goto-char (point-min))
(search-forward "\n" nil t 3)
(replace-regexp-in-string " *\\([^\n]+\\)\n" "\\1 "
(buffer-substring-no-properties (point) (point-max)))))