Function: mm-with-unibyte-buffer

mm-with-unibyte-buffer is a macro defined in mm-util.el.gz.

Signature

(mm-with-unibyte-buffer &rest FORMS)

Documentation

Create a temporary unibyte buffer, and evaluate FORMS there like progn.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/mm-util.el.gz
(defmacro mm-with-unibyte-buffer (&rest forms)
  "Create a temporary unibyte buffer, and evaluate FORMS there like `progn'."
  (declare (indent 0) (debug t))
  `(with-temp-buffer
     (mm-disable-multibyte)
     ,@forms))