Function: gnus-agent-read-file

gnus-agent-read-file is a byte-compiled function defined in gnus-agent.el.gz.

Signature

(gnus-agent-read-file FILE)

Documentation

Load FILE and do a read there.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-agent.el.gz
(defun gnus-agent-read-file (file)
  "Load FILE and do a `read' there."
  (with-temp-buffer
    (ignore-errors
      (nnheader-insert-file-contents file)
      (goto-char (point-min))
      (read (current-buffer)))))