]> git.eshelyaron.com Git - emacs.git/commitdiff
(verilog-read-decls): Fix AUTOINPUT/AUTOOUTPUT mis-including
authorDan Nicolaescu <dann@ics.uci.edu>
Thu, 20 Mar 2008 06:38:35 +0000 (06:38 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Thu, 20 Mar 2008 06:38:35 +0000 (06:38 +0000)
genvars.

lisp/ChangeLog
lisp/progmodes/verilog-mode.el

index 8c3f8f0d10b719b0cac546e74ee82c2275510cf8..de942aced7379e2545327ce6d98f08d0328e3af1 100644 (file)
@@ -11,6 +11,8 @@
        expansion when a .* appears inside a string.
        (verilog-re-search-forward, verilog-re-search-backward): Add
        comment to recall how this works.
+       (verilog-read-decls): Fix AUTOINPUT/AUTOOUTPUT mis-including
+       genvars.
 
 2008-03-20  Glenn Morris  <rgm@gnu.org>
 
index 901d30085257d6a0ef52881a77612e4f8c97db1f..71b870b27ed8dfdef7d9fc086a21dc63cf729992 100644 (file)
@@ -6156,7 +6156,8 @@ Return a array of [outputs inouts inputs wire reg assign const]."
                ((or (equal keywd "supply0")
                     (equal keywd "supply1")
                     (equal keywd "supply")
-                    (equal keywd "localparam"))
+                    (equal keywd "localparam")
+                    (equal keywd "genvar"))
                 (unless io (setq vec nil  enum nil  rvalue nil  signed nil  typedefed nil  multidim nil  sig-paren paren
                                  expect-signal 'sigs-const)))
                ((or (equal keywd "parameter"))