diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2011-06-24 14:13:35 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2011-06-24 14:13:35 +0200 |
commit | 7d0da90e7b98f5c09df82be9985cc27d30adea07 (patch) | |
tree | 29deb17a3c5fc1c26210a977078385cb40b36009 /lisp/progmodes/verilog-mode.el | |
parent | 4228cf16fb166263caba0af8e3c813b3d578d0b6 (diff) | |
download | emacs-7d0da90e7b98f5c09df82be9985cc27d30adea07.tar.gz emacs-7d0da90e7b98f5c09df82be9985cc27d30adea07.tar.bz2 emacs-7d0da90e7b98f5c09df82be9985cc27d30adea07.zip |
lisp/progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
Diffstat (limited to 'lisp/progmodes/verilog-mode.el')
-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 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: #'verilog-indent-line-relative) (setq comment-indent-function 'verilog-comment-indent) (set (make-local-variable 'parse-sexp-ignore-comments) nil) - + (set (make-local-variable 'comment-start) "// ") (set (make-local-variable 'comment-end) "") (set (make-local-variable 'comment-start-skip) "/\\*+ *\\|// *") @@ -3157,7 +3157,7 @@ Key bindings specific to `verilog-mode-map' are: (set (make-local-variable 'imenu-generic-expression) verilog-imenu-generic-expression) ;; Tell which-func-modes that imenu knows about verilog - (when (boundp 'which-function-modes) + (when (boundp 'which-func-modes) (add-to-list 'which-func-modes 'verilog-mode)) ;; hideshow support (when (boundp 'hs-special-modes-alist) |