Function: vera-lineup-comment

vera-lineup-comment is a byte-compiled function defined in vera-mode.el.gz.

Signature

(vera-lineup-comment LANGELEM)

Documentation

Line up a comment start.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vera-mode.el.gz
(defun vera-lineup-comment (langelem)
  "Line up a comment start."
  (save-excursion
    (back-to-indentation)
    (if (bolp)
	;; not indent if at beginning of line
	-1000
      ;; otherwise indent accordingly
      (goto-char (cdr langelem))
      (current-column))))