Function: vhdl-current-line
vhdl-current-line is a byte-compiled function defined in
vhdl-mode.el.gz.
Signature
(vhdl-current-line)
Documentation
Return the line number of the line containing point.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Line handling functions
(defun vhdl-current-line ()
"Return the line number of the line containing point."
(save-restriction
(widen)
(1+ (count-lines (point-min) (line-beginning-position)))))