Function: verilog-insert-date

verilog-insert-date is an interactive and byte-compiled function defined in verilog-mode.el.gz.

Signature

(verilog-insert-date)

Documentation

Insert date from the system.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
;; verilog-header Uses the verilog-insert-date function

(defun verilog-insert-date ()
  "Insert date from the system."
  (interactive)
  (if verilog-date-scientific-format
      (insert (format-time-string "%Y/%m/%d"))
    (insert (format-time-string "%d.%m.%Y"))))