Function: verilog-insert-last-command-event
verilog-insert-last-command-event is a byte-compiled function defined
in verilog-mode.el.gz.
Signature
(verilog-insert-last-command-event)
Documentation
Insert the last-command-event.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-insert-last-command-event ()
"Insert the `last-command-event'."
(insert (if (featurep 'xemacs)
;; XEmacs 21.5 doesn't like last-command-event
last-command-char
;; And GNU Emacs 22 has obsoleted last-command-char
last-command-event)))