Function: verilog-faq
verilog-faq is an interactive and byte-compiled function defined in
verilog-mode.el.gz.
Signature
(verilog-faq)
Documentation
Tell the user their current version, and where to get the FAQ etc.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
;;; Bug reporting:
;;
(defun verilog-faq ()
"Tell the user their current version, and where to get the FAQ etc."
(interactive)
(with-output-to-temp-buffer "*verilog-mode help*"
(princ (format "You are using verilog-mode %s\n" verilog-mode-version))
(princ "\n")
(princ "For new releases, see https://www.veripool.org/verilog-mode\n")
(princ "\n")
(princ "For frequently asked questions, see https://www.veripool.org/verilog-mode-faq.html\n")
(princ "\n")
(princ "To submit a bug, use M-x verilog-submit-bug-report\n")
(princ "\n")))