diff options
| author | Juanma Barranquero | 2005-09-13 08:50:42 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-09-13 08:50:42 +0000 |
| commit | 84c98acef65f41a50d80c7d6e690b3df7baf721c (patch) | |
| tree | ccb2de1917afe485493ba61ef127d8da35631084 | |
| parent | e77274b76e31b293b0f9e1af79fafc68220e374b (diff) | |
| download | emacs-84c98acef65f41a50d80c7d6e690b3df7baf721c.tar.gz emacs-84c98acef65f41a50d80c7d6e690b3df7baf721c.zip | |
(conf-alist, conf-entry, conf-key, ent-alist): Add defvar.
| -rw-r--r-- | lisp/progmodes/vhdl-mode.el | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el index 1caaa1f35b6..4014029b113 100644 --- a/lisp/progmodes/vhdl-mode.el +++ b/lisp/progmodes/vhdl-mode.el | |||
| @@ -134,12 +134,15 @@ | |||
| 134 | "Non-nil if GNU Emacs 22, ... is used.") | 134 | "Non-nil if GNU Emacs 22, ... is used.") |
| 135 | 135 | ||
| 136 | (defvar compilation-file-regexp-alist) | 136 | (defvar compilation-file-regexp-alist) |
| 137 | (defvar conf-alist) | ||
| 138 | (defvar conf-entry) | ||
| 139 | (defvar conf-key) | ||
| 140 | (defvar ent-alist) | ||
| 137 | (defvar itimer-version) | 141 | (defvar itimer-version) |
| 138 | (defvar lazy-lock-defer-contextually) | 142 | (defvar lazy-lock-defer-contextually) |
| 139 | (defvar lazy-lock-defer-on-scrolling) | 143 | (defvar lazy-lock-defer-on-scrolling) |
| 140 | (defvar lazy-lock-defer-on-the-fly) | 144 | (defvar lazy-lock-defer-on-the-fly) |
| 141 | 145 | ||
| 142 | |||
| 143 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 146 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 144 | ;;; Variables | 147 | ;;; Variables |
| 145 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 148 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| @@ -363,7 +366,7 @@ Unit-to-file name mapping: mapping of library unit names to names of files | |||
| 363 | Case adjustment : adjust case of inserted unit names | 366 | Case adjustment : adjust case of inserted unit names |
| 364 | 367 | ||
| 365 | \(*) The regular expression must match the error message starting from the | 368 | \(*) The regular expression must match the error message starting from the |
| 366 | beginning of the line (but not necessarily to the end of the line). | 369 | beginning of the line (but not necessarily to the end of the line). |
| 367 | 370 | ||
| 368 | Compile options allows insertion of the library name (see `vhdl-project-alist') | 371 | Compile options allows insertion of the library name (see `vhdl-project-alist') |
| 369 | in order to set the compilers library option (e.g. \"vcom -work my_lib\"). | 372 | in order to set the compilers library option (e.g. \"vcom -work my_lib\"). |
| @@ -1059,7 +1062,7 @@ begin -- process <label> | |||
| 1059 | <cursor> | 1062 | <cursor> |
| 1060 | elsif <clock>'event and <clock> = '1' then -- rising clock edge | 1063 | elsif <clock>'event and <clock> = '1' then -- rising clock edge |
| 1061 | if <enable> = '1' then -- synchronous load | 1064 | if <enable> = '1' then -- synchronous load |
| 1062 | 1065 | ||
| 1063 | end if; | 1066 | end if; |
| 1064 | end if; | 1067 | end if; |
| 1065 | end process <label>;" | 1068 | end process <label>;" |
| @@ -1328,7 +1331,7 @@ Type `C-j' for newlines." | |||
| 1328 | WaveGen_Proc: process | 1331 | WaveGen_Proc: process |
| 1329 | begin | 1332 | begin |
| 1330 | -- insert signal assignments here | 1333 | -- insert signal assignments here |
| 1331 | 1334 | ||
| 1332 | wait until Clk = '1'; | 1335 | wait until Clk = '1'; |
| 1333 | end process WaveGen_Proc; | 1336 | end process WaveGen_Proc; |
| 1334 | " | 1337 | " |
| @@ -4403,16 +4406,16 @@ Usage: | |||
| 4403 | outputs from this component -> output port created | 4406 | outputs from this component -> output port created |
| 4404 | - signals that are inputs to AND outputs from subcomponents are | 4407 | - signals that are inputs to AND outputs from subcomponents are |
| 4405 | considered as internal connections -> internal signal created | 4408 | considered as internal connections -> internal signal created |
| 4406 | 4409 | ||
| 4407 | Purpose: With appropriate naming conventions it is possible to | 4410 | Purpose: With appropriate naming conventions it is possible to |
| 4408 | create higher design levels with only a few mouse clicks or key | 4411 | create higher design levels with only a few mouse clicks or key |
| 4409 | strokes. A new design level can be created by simply generating a new | 4412 | strokes. A new design level can be created by simply generating a new |
| 4410 | component, placing the required subcomponents from the hierarchy | 4413 | component, placing the required subcomponents from the hierarchy |
| 4411 | browser, and wiring everything automatically. | 4414 | browser, and wiring everything automatically. |
| 4412 | 4415 | ||
| 4413 | Note: Automatic wiring only works reliably on templates of new | 4416 | Note: Automatic wiring only works reliably on templates of new |
| 4414 | components and component instantiations that were created by VHDL mode. | 4417 | components and component instantiations that were created by VHDL mode. |
| 4415 | 4418 | ||
| 4416 | Component declarations can be placed in a components package (option | 4419 | Component declarations can be placed in a components package (option |
| 4417 | `vhdl-use-components-package') which can be automatically generated for | 4420 | `vhdl-use-components-package') which can be automatically generated for |
| 4418 | an entire directory or project (`C-c C-c M-p'). The VHDL'93 direct | 4421 | an entire directory or project (`C-c C-c M-p'). The VHDL'93 direct |
| @@ -4434,7 +4437,7 @@ Usage: | |||
| 4434 | | Note: Configurations of subcomponents (i.e. hierarchical configuration | 4437 | | Note: Configurations of subcomponents (i.e. hierarchical configuration |
| 4435 | | declarations) are currently not considered when displaying | 4438 | | declarations) are currently not considered when displaying |
| 4436 | | configurations in speedbar. | 4439 | | configurations in speedbar. |
| 4437 | 4440 | ||
| 4438 | See the options group `vhdl-compose' for all relevant user options. | 4441 | See the options group `vhdl-compose' for all relevant user options. |
| 4439 | 4442 | ||
| 4440 | 4443 | ||
| @@ -15291,7 +15294,7 @@ expansion function)." | |||
| 15291 | (defface vhdl-speedbar-architecture-face | 15294 | (defface vhdl-speedbar-architecture-face |
| 15292 | '((((min-colors 88) (class color) (background light)) (:foreground "Blue1")) | 15295 | '((((min-colors 88) (class color) (background light)) (:foreground "Blue1")) |
| 15293 | (((class color) (background light)) (:foreground "Blue")) | 15296 | (((class color) (background light)) (:foreground "Blue")) |
| 15294 | 15297 | ||
| 15295 | (((class color) (background dark)) (:foreground "LightSkyBlue"))) | 15298 | (((class color) (background dark)) (:foreground "LightSkyBlue"))) |
| 15296 | "Face used for displaying architecture names." | 15299 | "Face used for displaying architecture names." |
| 15297 | :group 'speedbar-faces) | 15300 | :group 'speedbar-faces) |