Function: meta-indent-buffer
meta-indent-buffer is an interactive and byte-compiled function
defined in meta-mode.el.gz.
Signature
(meta-indent-buffer)
Documentation
Indent the whole buffer contents as Metafont or MetaPost source.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/meta-mode.el.gz
(defun meta-indent-buffer ()
"Indent the whole buffer contents as Metafont or MetaPost source."
(interactive)
(save-excursion
(indent-region (point-min) (point-max) nil)))