Function: vhdl-in-argument-list-p
vhdl-in-argument-list-p is a byte-compiled function defined in
vhdl-mode.el.gz.
Signature
(vhdl-in-argument-list-p)
Documentation
Check if within an argument list.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-in-argument-list-p ()
"Check if within an argument list."
(save-excursion
(vhdl-prepare-search-2
(or (string-match "arglist"
(format "%s" (caar (vhdl-get-syntactic-context))))
(progn (beginning-of-line)
(looking-at "^\\s-*\\(generic\\|port\\|\\(\\(impure\\|pure\\)\\s-+\\|\\)function\\|procedure\\)\\>\\s-*\\(\\w+\\s-*\\)?("))))))