Function: fortran-line-number-indented-correctly-p

fortran-line-number-indented-correctly-p is a byte-compiled function defined in fortran.el.gz.

Signature

(fortran-line-number-indented-correctly-p)

Documentation

Return t if current line's line number is correctly indented.

Do not call if there is no line number.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/fortran.el.gz
(defun fortran-line-number-indented-correctly-p ()
  "Return t if current line's line number is correctly indented.
Do not call if there is no line number."
  (save-excursion
    (beginning-of-line)
    (skip-chars-forward " \t")
    (and (<= (current-column) fortran-line-number-indent)
         (or (= (current-column) fortran-line-number-indent)
             (progn (skip-chars-forward "0-9")
                    (= (current-column) 5))))))