Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions verilog-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -3396,7 +3396,7 @@ See also `verilog-font-lock-extra-types'.")
(verilog-single-declaration-end verilog-highlight-max-lookahead)
(point)) ;; => current declaration statement is of 0 length
nil ;; Post-form: nothing to be done
'(0 font-lock-variable-name-face t t)))
'(0 font-lock-variable-name-face nil t)))
)))


Expand Down Expand Up @@ -3714,7 +3714,7 @@ obtained using `verilog-single-declaration-end'."
(verilog-forward-ws&directives limit)
(setq old-point nil)
(while (and (< (point) limit)
(not (member (char-after) '(?, ?\) ?\;)))
(not (member (char-after) '(?, ?\) ?\] ?\} ?\;)))
(not (eq old-point (point))))
(setq old-point (point))
(verilog-forward-ws&directives limit)
Expand Down