Function: vhdl-last-word

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

Signature

(vhdl-last-word POINT)

Documentation

If keyword at POINT is at eoi, then return (current-column) at that point.

Otherwise, return nil.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-last-word (point)
  "If keyword at POINT is at eoi, then return (current-column) at that point.
Otherwise, return nil."
  (save-excursion
    (and (goto-char point)
	 (save-excursion (or (eq (progn (forward-sexp) (point))
				 (vhdl-point 'eoi))
			     (looking-at "\\s-*\\(--\\)?")))
	 (current-column))))