Function: vhdl-first-word

vhdl-first-word is a byte-compiled function defined in vhdl-mode.el.gz.

Signature

(vhdl-first-word POINT)

Documentation

If the keyword at POINT is at boi, return (current-column) at that point.

Otherwise return nil.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
;; Functions to help finding the correct indentation column:

(defun vhdl-first-word (point)
  "If the keyword at POINT is at boi, return (current-column) at that point.
Otherwise return nil."
  (save-excursion
    (and (goto-char point)
	 (eq (point) (vhdl-point 'boi))
	 (current-column))))