Function: vhdl-comment-display-line
vhdl-comment-display-line is an interactive and byte-compiled function
defined in vhdl-mode.el.gz.
Signature
(vhdl-comment-display-line)
Documentation
Displays one line of dashes.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-comment-display-line ()
"Displays one line of dashes."
(interactive)
(while (= (preceding-char) ?-) (delete-char -2))
(insert "--")
(let* ((col (current-column))
(len (- end-comment-column col)))
(insert-char vhdl-comment-display-line-char len)))