Variable: vhdl-doc-release-notes

vhdl-doc-release-notes is a variable defined in vhdl-mode.el.gz.

Value

nil

Documentation

Release Notes for VHDL Mode 3.37
================================

- Added support for VHDL'08:
  - New keywords, types, functions, attributes, operators, packages
  - Context declaration
  - Block comments
  - Directives
  - all keyword in sensitivity list


Release Notes for VHDL Mode 3.34
================================

- Added support for GNU Emacs 22/23/24:
  - Compilation error parsing fixed for new compile.el package.

- Port translation: Derive actual generic name from formal generic name.

- New user options:
  vhdl-actual-generic-name: Specify how actual generic names are obtained.


Release Notes for VHDL Mode 3.33
================================

New Features
------------

CONFIGURATION DECLARATION GENERATION:
  - Automatic generation of a configuration declaration for a design.
    (See documentation (C-c C-h) in section on STRUCTURAL COMPOSITION.)


Key Bindings
------------

For Emacs compliance the following key bindings have been changed:

- C-c c -> C-c C-c vhdl-comment-uncomment-region
- C-c f -> C-c C-i C-f vhdl-fontify-buffer
- C-c s -> C-c C-i C-s vhdl-statistics-buffer
- C-c C-c ... -> C-c C-m ... vhdl-compose-...


User Options
------------

vhdl-configuration-file-name: (new)
  Specify how the configuration file name is obtained.
vhdl-compose-configuration-name: (new)
  Specify how the configuration name is obtained.
vhdl-compose-configuration-create-file: (new)
  Specify whether a new file should be created for a configuration.
vhdl-compose-configuration-hierarchical: (new)
  Specify whether hierarchical configurations should be created.
vhdl-compose-configuration-use-subconfiguration: (new)
  Specify whether subconfigurations should be used inside configurations.
vhdl-makefile-default-targets: (new)
  Customize names of Makefile default targets.
vhdl-indent-comment-like-next-code-line: (new)
  Specify whether comment lines are indented like following code line.
vhdl-array-index-record-field-in-sensitivity-list: (new)
  Specify whether to include array indices / record fields in sensitivity list.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Documentation
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

(defconst vhdl-doc-release-notes nil
  "\
Release Notes for VHDL Mode 3.37
================================

- Added support for VHDL'08:
  - New keywords, types, functions, attributes, operators, packages
  - Context declaration
  - Block comments
  - Directives
  - `all' keyword in sensitivity list


Release Notes for VHDL Mode 3.34
================================

- Added support for GNU Emacs 22/23/24:
  - Compilation error parsing fixed for new `compile.el' package.

- Port translation: Derive actual generic name from formal generic name.

- New user options:
  `vhdl-actual-generic-name': Specify how actual generic names are obtained.


Release Notes for VHDL Mode 3.33
================================

New Features
------------

CONFIGURATION DECLARATION GENERATION:
  - Automatic generation of a configuration declaration for a design.
    (See documentation (`C-c C-h') in section on STRUCTURAL COMPOSITION.)


Key Bindings
------------

For Emacs compliance the following key bindings have been changed:

- `C-c c'        ->  `C-c C-c'      `vhdl-comment-uncomment-region'
- `C-c f'        ->  `C-c C-i C-f'  `vhdl-fontify-buffer'
- `C-c s'        ->  `C-c C-i C-s'  `vhdl-statistics-buffer'
- `C-c C-c ...'  ->  `C-c C-m ...'  `vhdl-compose-...'


User Options
------------

`vhdl-configuration-file-name': (new)
  Specify how the configuration file name is obtained.
`vhdl-compose-configuration-name': (new)
  Specify how the configuration name is obtained.
`vhdl-compose-configuration-create-file': (new)
  Specify whether a new file should be created for a configuration.
`vhdl-compose-configuration-hierarchical': (new)
  Specify whether hierarchical configurations should be created.
`vhdl-compose-configuration-use-subconfiguration': (new)
  Specify whether subconfigurations should be used inside configurations.
`vhdl-makefile-default-targets': (new)
  Customize names of Makefile default targets.
`vhdl-indent-comment-like-next-code-line': (new)
  Specify whether comment lines are indented like following code line.
`vhdl-array-index-record-field-in-sensitivity-list': (new)
  Specify whether to include array indices / record fields in sensitivity list.")