emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r104698: lisp/progmodes/verilog-mode.


From: Juanma Barranquero
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r104698: lisp/progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
Date: Fri, 24 Jun 2011 14:13:35 +0200
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 104698
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Fri 2011-06-24 14:13:35 +0200
message:
  lisp/progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
modified:
  lisp/ChangeLog
  lisp/progmodes/verilog-mode.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-06-23 17:08:15 +0000
+++ b/lisp/ChangeLog    2011-06-24 12:13:35 +0000
@@ -1,3 +1,7 @@
+2011-06-24  Juanma Barranquero  <address@hidden>
+
+       * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
+
 2011-06-23  Richard Stallman  <address@hidden>
 
        * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.

=== modified file 'lisp/progmodes/verilog-mode.el'
--- a/lisp/progmodes/verilog-mode.el    2011-05-23 17:57:17 +0000
+++ b/lisp/progmodes/verilog-mode.el    2011-06-24 12:13:35 +0000
@@ -3110,7 +3110,7 @@
        #'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 @@
   (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)


reply via email to

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