diff options
| author | Wilson Snyder | 2019-03-05 20:51:35 -0500 |
|---|---|---|
| committer | Wilson Snyder | 2019-03-05 20:51:35 -0500 |
| commit | 3635be5aeebf780d64b874a568cb38b638d0508b (patch) | |
| tree | a945413ace64b23e08c85252d195d13be8f1302a | |
| parent | 1c349c62305d432abf0fa2b6e3f5d754fe4cab79 (diff) | |
| download | emacs-3635be5aeebf780d64b874a568cb38b638d0508b.tar.gz emacs-3635be5aeebf780d64b874a568cb38b638d0508b.zip | |
Fix regexp issues introduced in last trunk commit.
* verilog-mode.el (verilog-coverpoint-re): Fix regexp issues introduced
in last trunk commit.
| -rw-r--r-- | lisp/progmodes/verilog-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/verilog-mode.el b/lisp/progmodes/verilog-mode.el index 10601dfc6a2..f9c3177be41 100644 --- a/lisp/progmodes/verilog-mode.el +++ b/lisp/progmodes/verilog-mode.el | |||
| @@ -121,7 +121,7 @@ | |||
| 121 | ;; | 121 | ;; |
| 122 | 122 | ||
| 123 | ;; This variable will always hold the version number of the mode | 123 | ;; This variable will always hold the version number of the mode |
| 124 | (defconst verilog-mode-version "2019-03-05-e72ce53-vpo-GNU" | 124 | (defconst verilog-mode-version "2019-03-05-39b4dac-vpo-GNU" |
| 125 | "Version of this Verilog mode.") | 125 | "Version of this Verilog mode.") |
| 126 | (defconst verilog-mode-release-emacs t | 126 | (defconst verilog-mode-release-emacs t |
| 127 | "If non-nil, this version of Verilog mode was released with Emacs itself.") | 127 | "If non-nil, this version of Verilog mode was released with Emacs itself.") |
| @@ -2786,7 +2786,7 @@ find the errors." | |||
| 2786 | (defconst verilog-behavioral-block-beg-re | 2786 | (defconst verilog-behavioral-block-beg-re |
| 2787 | (eval-when-compile (verilog-regexp-words '("initial" "final" "always" "always_comb" "always_latch" "always_ff" | 2787 | (eval-when-compile (verilog-regexp-words '("initial" "final" "always" "always_comb" "always_latch" "always_ff" |
| 2788 | "function" "task")))) | 2788 | "function" "task")))) |
| 2789 | (defconst verilog-coverpoint-re "\\w+\\s*:\\s*\\(coverpoint\\|cross\\|constraint\\)") | 2789 | (defconst verilog-coverpoint-re "\\w+\\s-*:\\s-*\\(coverpoint\\|cross\\|constraint\\)") |
| 2790 | (defconst verilog-in-constraint-re ; keywords legal in constraint blocks starting a statement/block | 2790 | (defconst verilog-in-constraint-re ; keywords legal in constraint blocks starting a statement/block |
| 2791 | (eval-when-compile (verilog-regexp-words '("if" "else" "solve" "foreach")))) | 2791 | (eval-when-compile (verilog-regexp-words '("if" "else" "solve" "foreach")))) |
| 2792 | 2792 | ||