* lisp/progmodes/verilog-mode.el (verilog-mode): Don't set

comment-indent-function globally.
This commit is contained in:
Johan Bockgård 2013-10-20 12:13:26 +02:00
parent d4816ab3aa
commit c25f8957ba
2 changed files with 6 additions and 1 deletions

View file

@ -3657,7 +3657,7 @@ Key bindings specific to `verilog-mode-map' are:
(set-syntax-table verilog-mode-syntax-table)
(set (make-local-variable 'indent-line-function)
#'verilog-indent-line-relative)
(setq comment-indent-function 'verilog-comment-indent)
(set (make-local-variable '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) "")