emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 3635be5: Fix regexp issues introduced in last trunk


From: Wilson Snyder
Subject: [Emacs-diffs] master 3635be5: Fix regexp issues introduced in last trunk commit.
Date: Tue, 5 Mar 2019 20:51:44 -0500 (EST)

branch: master
commit 3635be5aeebf780d64b874a568cb38b638d0508b
Author: Wilson Snyder <address@hidden>
Commit: Wilson Snyder <address@hidden>

    Fix regexp issues introduced in last trunk commit.
    
    * verilog-mode.el (verilog-coverpoint-re): Fix regexp issues introduced
    in last trunk commit.
---
 lisp/progmodes/verilog-mode.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/progmodes/verilog-mode.el b/lisp/progmodes/verilog-mode.el
index 10601df..f9c3177 100644
--- a/lisp/progmodes/verilog-mode.el
+++ b/lisp/progmodes/verilog-mode.el
@@ -121,7 +121,7 @@
 ;;
 
 ;; This variable will always hold the version number of the mode
-(defconst verilog-mode-version "2019-03-05-e72ce53-vpo-GNU"
+(defconst verilog-mode-version "2019-03-05-39b4dac-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.")
@@ -2786,7 +2786,7 @@ find the errors."
 (defconst verilog-behavioral-block-beg-re
   (eval-when-compile (verilog-regexp-words '("initial" "final" "always" 
"always_comb" "always_latch" "always_ff"
                                              "function" "task"))))
-(defconst verilog-coverpoint-re 
"\\w+\\s*:\\s*\\(coverpoint\\|cross\\|constraint\\)")
+(defconst verilog-coverpoint-re 
"\\w+\\s-*:\\s-*\\(coverpoint\\|cross\\|constraint\\)")
 (defconst verilog-in-constraint-re  ; keywords legal in constraint blocks 
starting a statement/block
   (eval-when-compile (verilog-regexp-words '("if" "else" "solve" "foreach"))))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]