lisp/progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
authorJuanma Barranquero <lekktu@gmail.com>
Fri, 24 Jun 2011 12:13:35 +0000 (14:13 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Fri, 24 Jun 2011 12:13:35 +0000 (14:13 +0200)
lisp/ChangeLog
lisp/progmodes/verilog-mode.el

index 73c33ec..efb5e0f 100644 (file)
@@ -1,3 +1,7 @@
+2011-06-24  Juanma Barranquero  <lekktu@gmail.com>
+
+       * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
+
 2011-06-23  Richard Stallman  <rms@gnu.org>
 
        * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
index eab34f6..f7cb131 100644 (file)
@@ -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)