Function: vhdl-he-list-beg

vhdl-he-list-beg is a byte-compiled function defined in vhdl-mode.el.gz.

Signature

(vhdl-he-list-beg)

Documentation

Also looks at the word before ( in order to better match parenthesized expressions (e.g. for index ranges of types and signals).

Aliases

he-list-beg

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-he-list-beg ()
  "Also looks at the word before `(' in order to better match parenthesized
expressions (e.g. for index ranges of types and signals)."
  (save-excursion
    (condition-case ()
	(progn (backward-up-list 1)
               (skip-syntax-backward "w_")) ; crashes in `viper-mode'
      (error ()))
    (point)))