Function: bdf-search-and-read
bdf-search-and-read is a byte-compiled function defined in
ps-bdf.el.gz.
Signature
(bdf-search-and-read MATCH LIMIT)
Source Code
;; Defined in /usr/src/emacs/lisp/ps-bdf.el.gz
(defun bdf-search-and-read (match limit)
(goto-char (point-min))
(and (search-forward match limit t)
(progn
(goto-char (match-end 0))
(read (current-buffer)))))