Function: mml-insert-buffer
mml-insert-buffer is a byte-compiled function defined in mml.el.gz.
Signature
(mml-insert-buffer BUFFER)
Documentation
Insert BUFFER at point and quote any MML markup.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/mml.el.gz
(defun mml-insert-buffer (buffer)
"Insert BUFFER at point and quote any MML markup."
(save-restriction
(narrow-to-region (point) (point))
(insert-buffer-substring buffer)
(mml-quote-region (point-min) (point-max))
(goto-char (point-max))))