@@ -691,12 +691,14 @@ Set to 0 to have all directives start at the left side of the screen."
691
691
(defcustom verilog-indent-ignore-multiline-defines t
692
692
"Non-nil means ignore indentation on lines that are part of a multiline define."
693
693
:group 'verilog-mode-indent
694
+ :version "30.1"
694
695
:type 'boolean)
695
696
(put 'verilog-indent-ignore-multiline-defines 'safe-local-variable #'verilog-booleanp)
696
697
697
698
(defcustom verilog-indent-ignore-regexp nil
698
699
"Regexp that matches lines that should be ignored for indentation."
699
700
:group 'verilog-mode-indent
701
+ :version "30.1"
700
702
:type 'boolean)
701
703
(put 'verilog-indent-ignore-regexp 'safe-local-variable #'stringp)
702
704
@@ -748,6 +750,7 @@ Otherwise, line them up."
748
750
"Non-nil means indent classes inside packages.
749
751
Otherwise, classes have zero indentation."
750
752
:group 'verilog-mode-indent
753
+ :version "30.1"
751
754
:type 'boolean)
752
755
(put 'verilog-indent-class-inside-pkg 'safe-local-variable #'verilog-booleanp)
753
756
@@ -761,32 +764,37 @@ Otherwise else is lined up with first character on line holding matching if."
761
764
(defcustom verilog-align-decl-expr-comments t
762
765
"Non-nil means align declaration and expressions comments."
763
766
:group 'verilog-mode-indent
767
+ :version "30.1"
764
768
:type 'boolean)
765
769
(put 'verilog-align-decl-expr-comments 'safe-local-variable #'verilog-booleanp)
766
770
767
771
(defcustom verilog-align-comment-distance 1
768
772
"Distance (in spaces) between longest declaration/expression and comments.
769
773
Only works if `verilog-align-decl-expr-comments' is non-nil."
770
774
:group 'verilog-mode-indent
775
+ :version "30.1"
771
776
:type 'integer)
772
777
(put 'verilog-align-comment-distance 'safe-local-variable #'integerp)
773
778
774
779
(defcustom verilog-align-assign-expr nil
775
780
"Non-nil means align expressions of continuous assignments."
776
781
:group 'verilog-mode-indent
782
+ :version "30.1"
777
783
:type 'boolean)
778
784
(put 'verilog-align-assign-expr 'safe-local-variable #'verilog-booleanp)
779
785
780
786
(defcustom verilog-align-typedef-regexp nil
781
787
"Regexp that matches user typedefs for declaration alignment."
782
788
:group 'verilog-mode-indent
789
+ :version "30.1"
783
790
:type '(choice (regexp :tag "Regexp")
784
791
(const :tag "None" nil)))
785
792
(put 'verilog-align-typedef-regexp 'safe-local-variable #'stringp)
786
793
787
794
(defcustom verilog-align-typedef-words nil
788
795
"List of words that match user typedefs for declaration alignment."
789
796
:group 'verilog-mode-indent
797
+ :version "30.1"
790
798
:type '(repeat string))
791
799
(put 'verilog-align-typedef-words 'safe-local-variable #'listp)
792
800
@@ -939,6 +947,7 @@ always be saved."
939
947
(defcustom verilog-fontify-variables t
940
948
"Non-nil means fontify declaration variables."
941
949
:group 'verilog-mode-actions
950
+ :version "30.1"
942
951
:type 'boolean)
943
952
(put 'verilog-fontify-variables 'safe-local-variable #'verilog-booleanp)
944
953
0 commit comments