diff options
author | Wilson Snyder <wsnyder@wsnyder.org> | 2021-04-12 13:36:05 -0400 |
---|---|---|
committer | Wilson Snyder <wsnyder@wsnyder.org> | 2021-04-12 13:36:05 -0400 |
commit | 3cb0229d75b1380d7a144e24ad24172497fb931c (patch) | |
tree | f4675a48dda265c69d5095214837f590f593fac9 /lisp/progmodes/verilog-mode.el | |
parent | f63da590fdf115ad6173e123fd41dc62accc7704 (diff) | |
download | emacs-3cb0229d75b1380d7a144e24ad24172497fb931c.tar.gz emacs-3cb0229d75b1380d7a144e24ad24172497fb931c.tar.bz2 emacs-3cb0229d75b1380d7a144e24ad24172497fb931c.zip |
* lisp/progmodes/verilog-mode.el (vl-memory): Add missing defvar.
Diffstat (limited to 'lisp/progmodes/verilog-mode.el')
-rw-r--r-- | lisp/progmodes/verilog-mode.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/progmodes/verilog-mode.el b/lisp/progmodes/verilog-mode.el index 5f8f723f80e..2b88120eb9c 100644 --- a/lisp/progmodes/verilog-mode.el +++ b/lisp/progmodes/verilog-mode.el @@ -9,7 +9,7 @@ ;; Keywords: languages ;; The "Version" is the date followed by the decimal rendition of the Git ;; commit hex. -;; Version: 2021.03.30.243771231 +;; Version: 2021.04.12.188864585 ;; Yoni Rabkin <yoni@rabkins.net> contacted the maintainer of this ;; file on 19/3/2008, and the maintainer agreed that when a bug is @@ -124,7 +124,7 @@ ;; ;; This variable will always hold the version number of the mode -(defconst verilog-mode-version "2021-03-30-e87a75f-vpo-GNU" +(defconst verilog-mode-version "2021-04-12-b41d849-vpo-GNU" "Version of this Verilog mode.") (defconst verilog-mode-release-emacs t "If non-nil, this version of Verilog mode was released with Emacs itself.") @@ -11561,6 +11561,7 @@ See the example in `verilog-auto-inout-modport'." (defvar vl-cell-type nil "See `verilog-auto-inst'.") ; Prevent compile warning (defvar vl-cell-name nil "See `verilog-auto-inst'.") ; Prevent compile warning +(defvar vl-memory nil "See `verilog-auto-inst'.") ; Prevent compile warning (defvar vl-modport nil "See `verilog-auto-inst'.") ; Prevent compile warning (defvar vl-name nil "See `verilog-auto-inst'.") ; Prevent compile warning (defvar vl-width nil "See `verilog-auto-inst'.") ; Prevent compile warning @@ -12063,6 +12064,7 @@ Lisp Templates: vl-width Width of the input/output port (`3' for [2:0]). May be a (...) expression if bits isn't a constant. vl-dir Direction of the pin input/output/inout/interface. + vl-memory The unpacked array part of the I/O port (`[5:0]'). vl-modport The modport, if an interface with a modport. vl-cell-type Module name/type of the cell (`InstModule'). vl-cell-name Instance name of the cell (`instName'). |