Function: gnus-write-buffer

gnus-write-buffer is a byte-compiled function defined in gnus-util.el.gz.

Signature

(gnus-write-buffer FILE)

Documentation

Write the current buffer's contents to FILE.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-util.el.gz
(defun gnus-write-buffer (file)
  "Write the current buffer's contents to FILE."
  (require 'nnmail)
  (let ((file-name-coding-system nnmail-pathname-coding-system))
    ;; Make sure the directory exists.
    (gnus-make-directory (file-name-directory file))
    ;; Write the buffer.
    (write-region (point-min) (point-max) file nil 'quietly)))