diff options
| author | Dan Nicolaescu | 2008-03-03 20:31:04 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-03-03 20:31:04 +0000 |
| commit | b1d0fc86691f60c187264b6bb90def845a62611c (patch) | |
| tree | 9bf9c2e27c4b8927898f3f3f06a01fc7311617da /lisp | |
| parent | 70f6d79619dea7b743c879389bc6dd89553a0a25 (diff) | |
| download | emacs-b1d0fc86691f60c187264b6bb90def845a62611c.tar.gz emacs-b1d0fc86691f60c187264b6bb90def845a62611c.zip | |
(verilog-highlight-grouping-keywords):
Fix typo.
(verilog-type-font-keywords): Reindent.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/progmodes/verilog-mode.el | 18 |
2 files changed, 15 insertions, 9 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 22862b3e8bf..7dfe88d5778 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * progmodes/verilog-mode.el (verilog-highlight-grouping-keywords): | ||
| 4 | Fix typo. | ||
| 5 | (verilog-type-font-keywords): Reindent. | ||
| 6 | |||
| 1 | 2008-03-03 Michael McNamara <mac@mail.brushroad.com> | 7 | 2008-03-03 Michael McNamara <mac@mail.brushroad.com> |
| 2 | 8 | ||
| 3 | * verilog-mode.el (verilog-font-grouping-keywords): Fix bug in the | 9 | * verilog-mode.el (verilog-font-grouping-keywords): Fix bug in the |
diff --git a/lisp/progmodes/verilog-mode.el b/lisp/progmodes/verilog-mode.el index 78376f861f0..b24ccdc5bad 100644 --- a/lisp/progmodes/verilog-mode.el +++ b/lisp/progmodes/verilog-mode.el | |||
| @@ -538,7 +538,7 @@ If false, these words are in the font-lock-type-face; if True then they are in | |||
| 538 | grouping constructs allow the structure of the code to be understood at a glance." | 538 | grouping constructs allow the structure of the code to be understood at a glance." |
| 539 | :group 'verilog-mode-indent | 539 | :group 'verilog-mode-indent |
| 540 | :type 'boolean) | 540 | :type 'boolean) |
| 541 | (put 'verilog-highlight-p1800-keywords 'safe-local-variable verilog-booleanp) | 541 | (put 'verilog-highlight-grouping-keywords 'safe-local-variable 'verilog-booleanp) |
| 542 | 542 | ||
| 543 | (defcustom verilog-auto-endcomments t | 543 | (defcustom verilog-auto-endcomments t |
| 544 | "*True means insert a comment /* ... */ after 'end's. | 544 | "*True means insert a comment /* ... */ after 'end's. |
| @@ -1910,15 +1910,15 @@ See also `verilog-font-lock-extra-types'.") | |||
| 1910 | ;; And user/system tasks and functions | 1910 | ;; And user/system tasks and functions |
| 1911 | "\\$[a-zA-Z][a-zA-Z0-9_\\$]*" | 1911 | "\\$[a-zA-Z][a-zA-Z0-9_\\$]*" |
| 1912 | "\\)\\>") | 1912 | "\\)\\>") |
| 1913 | ;; Fontify all types | 1913 | ;; Fontify all types |
| 1914 | (if verilog-highlight-grouping-keywords | 1914 | (if verilog-highlight-grouping-keywords |
| 1915 | (cons (concat "\\<\\(" verilog-font-grouping-keywords "\\)\\>") | 1915 | (cons (concat "\\<\\(" verilog-font-grouping-keywords "\\)\\>") |
| 1916 | 'verilog-font-lock-ams-face) | 1916 | 'verilog-font-lock-ams-face) |
| 1917 | (cons (concat "\\<\\(" verilog-font-grouping-keywords "\\)\\>") | 1917 | (cons (concat "\\<\\(" verilog-font-grouping-keywords "\\)\\>") |
| 1918 | 'font-lock-type-face)) | 1918 | 'font-lock-type-face)) |
| 1919 | (cons (concat "\\<\\(" verilog-type-font-keywords "\\)\\>") | 1919 | (cons (concat "\\<\\(" verilog-type-font-keywords "\\)\\>") |
| 1920 | 'font-lock-type-face) | 1920 | 'font-lock-type-face) |
| 1921 | ;; Fontify IEEE-P1800 keywords appropriately | 1921 | ;; Fontify IEEE-P1800 keywords appropriately |
| 1922 | (if verilog-highlight-p1800-keywords | 1922 | (if verilog-highlight-p1800-keywords |
| 1923 | (cons (concat "\\<\\(" verilog-p1800-keywords "\\)\\>") | 1923 | (cons (concat "\\<\\(" verilog-p1800-keywords "\\)\\>") |
| 1924 | 'verilog-font-lock-p1800-face) | 1924 | 'verilog-font-lock-p1800-face) |