aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2011-06-24 14:13:35 +0200
committerJuanma Barranquero2011-06-24 14:13:35 +0200
commit7d0da90e7b98f5c09df82be9985cc27d30adea07 (patch)
tree29deb17a3c5fc1c26210a977078385cb40b36009
parent4228cf16fb166263caba0af8e3c813b3d578d0b6 (diff)
downloademacs-7d0da90e7b98f5c09df82be9985cc27d30adea07.tar.gz
emacs-7d0da90e7b98f5c09df82be9985cc27d30adea07.zip
lisp/progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/progmodes/verilog-mode.el4
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 73c33ec6d6f..efb5e0ffad7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12011-06-24 Juanma Barranquero <lekktu@gmail.com>
2
3 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
4
12011-06-23 Richard Stallman <rms@gnu.org> 52011-06-23 Richard Stallman <rms@gnu.org>
2 6
3 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message. 7 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
diff --git a/lisp/progmodes/verilog-mode.el b/lisp/progmodes/verilog-mode.el
index eab34f6f026..f7cb1318dc0 100644
--- a/lisp/progmodes/verilog-mode.el
+++ b/lisp/progmodes/verilog-mode.el
@@ -3110,7 +3110,7 @@ Key bindings specific to `verilog-mode-map' are:
3110 #'verilog-indent-line-relative) 3110 #'verilog-indent-line-relative)
3111 (setq comment-indent-function 'verilog-comment-indent) 3111 (setq comment-indent-function 'verilog-comment-indent)
3112 (set (make-local-variable 'parse-sexp-ignore-comments) nil) 3112 (set (make-local-variable 'parse-sexp-ignore-comments) nil)
3113 3113
3114 (set (make-local-variable 'comment-start) "// ") 3114 (set (make-local-variable 'comment-start) "// ")
3115 (set (make-local-variable 'comment-end) "") 3115 (set (make-local-variable 'comment-end) "")
3116 (set (make-local-variable 'comment-start-skip) "/\\*+ *\\|// *") 3116 (set (make-local-variable 'comment-start-skip) "/\\*+ *\\|// *")
@@ -3157,7 +3157,7 @@ Key bindings specific to `verilog-mode-map' are:
3157 (set (make-local-variable 'imenu-generic-expression) 3157 (set (make-local-variable 'imenu-generic-expression)
3158 verilog-imenu-generic-expression) 3158 verilog-imenu-generic-expression)
3159 ;; Tell which-func-modes that imenu knows about verilog 3159 ;; Tell which-func-modes that imenu knows about verilog
3160 (when (boundp 'which-function-modes) 3160 (when (boundp 'which-func-modes)
3161 (add-to-list 'which-func-modes 'verilog-mode)) 3161 (add-to-list 'which-func-modes 'verilog-mode))
3162 ;; hideshow support 3162 ;; hideshow support
3163 (when (boundp 'hs-special-modes-alist) 3163 (when (boundp 'hs-special-modes-alist)