Function: meta-comment-indent
meta-comment-indent is a byte-compiled function defined in
meta-mode.el.gz.
Signature
(meta-comment-indent)
Documentation
Return the indentation for a comment in Metafont or MetaPost mode.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/meta-mode.el.gz
(defun meta-comment-indent ()
"Return the indentation for a comment in Metafont or MetaPost mode."
(if (and meta-left-comment-regexp
(looking-at meta-left-comment-regexp))
(current-column)
(skip-chars-backward "\t\f ")
(max (if (bolp) 0 (1+ (current-column)))
comment-column)))