diff options
| -rw-r--r-- | lisp/progmodes/vhdl-mode.el | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el index b422cf6c989..c52c4169f40 100644 --- a/lisp/progmodes/vhdl-mode.el +++ b/lisp/progmodes/vhdl-mode.el | |||
| @@ -502,7 +502,7 @@ NOTE: Activate the new setting by restarting Emacs." | |||
| 502 | "List of default target names in Makefiles. | 502 | "List of default target names in Makefiles. |
| 503 | Automatically generated Makefiles include three default targets to compile | 503 | Automatically generated Makefiles include three default targets to compile |
| 504 | the entire design, clean the entire design and to create the design library. | 504 | the entire design, clean the entire design and to create the design library. |
| 505 | This option allows to change the names of these targets to avoid conflicts | 505 | This option allows you to change the names of these targets to avoid conflicts |
| 506 | with other user Makefiles." | 506 | with other user Makefiles." |
| 507 | :type '(list (string :tag "Compile entire design") | 507 | :type '(list (string :tag "Compile entire design") |
| 508 | (string :tag "Clean entire design ") | 508 | (string :tag "Clean entire design ") |
| @@ -512,7 +512,7 @@ with other user Makefiles." | |||
| 512 | 512 | ||
| 513 | (defcustom vhdl-makefile-generation-hook nil | 513 | (defcustom vhdl-makefile-generation-hook nil |
| 514 | "Functions to run at the end of Makefile generation. | 514 | "Functions to run at the end of Makefile generation. |
| 515 | Allows to insert user specific parts into a Makefile. | 515 | Allows you to insert user specific parts into a Makefile. |
| 516 | 516 | ||
| 517 | Example: | 517 | Example: |
| 518 | \(lambda nil | 518 | \(lambda nil |
| @@ -589,8 +589,8 @@ well as \"./\" and \"../\" (\"sh\" syntax). Paths can also be absolute. | |||
| 589 | Environment variables (e.g. \"$EXAMPLE2\") are resolved. If no sources are | 589 | Environment variables (e.g. \"$EXAMPLE2\") are resolved. If no sources are |
| 590 | specified, the default directory is taken as source directory. Otherwise, | 590 | specified, the default directory is taken as source directory. Otherwise, |
| 591 | the default directory is only taken as source directory if there is a sources | 591 | the default directory is only taken as source directory if there is a sources |
| 592 | entry with the empty string or \"./\". Exclude regexp allows to filter out | 592 | entry with the empty string or \"./\". Exclude regexp allows you to filter |
| 593 | specific file and directory names from the list of sources (e.g. CVS | 593 | out specific file and directory names from the list of sources (e.g. CVS |
| 594 | directories). | 594 | directories). |
| 595 | 595 | ||
| 596 | Files are compiled in the compile directory. Makefiles are also placed into | 596 | Files are compiled in the compile directory. Makefiles are also placed into |
| @@ -605,7 +605,7 @@ overwrite the settings of the current compiler. | |||
| 605 | 605 | ||
| 606 | File-specific compiler options (highest priority) overwrite project-specific | 606 | File-specific compiler options (highest priority) overwrite project-specific |
| 607 | options which overwrite default options (lowest priority). Lower priority | 607 | options which overwrite default options (lowest priority). Lower priority |
| 608 | options can be inserted in higher priority options. This allows to reuse | 608 | options can be inserted in higher priority options. This allows you to reuse |
| 609 | default options (e.g. \"-file\") in project- or file-specific options (e.g. | 609 | default options (e.g. \"-file\") in project- or file-specific options (e.g. |
| 610 | \"-93 -file\"). | 610 | \"-93 -file\"). |
| 611 | 611 | ||
| @@ -670,7 +670,7 @@ browser. The current project can also be changed temporarily in the menu." | |||
| 670 | (defcustom vhdl-project-file-name '("\\1.prj") | 670 | (defcustom vhdl-project-file-name '("\\1.prj") |
| 671 | "List of file names/paths for importing/exporting project setups. | 671 | "List of file names/paths for importing/exporting project setups. |
| 672 | \"\\1\" is replaced by the project name (SPC is replaced by `_'), \"\\2\" is | 672 | \"\\1\" is replaced by the project name (SPC is replaced by `_'), \"\\2\" is |
| 673 | replaced by the user name (allows to have user-specific project setups). | 673 | replaced by the user name (allows you to have user-specific project setups). |
| 674 | The first entry is used as file name to import/export individual project | 674 | The first entry is used as file name to import/export individual project |
| 675 | setups. All entries are used to automatically import project setups at | 675 | setups. All entries are used to automatically import project setups at |
| 676 | startup (see option `vhdl-project-auto-load'). Projects loaded from the | 676 | startup (see option `vhdl-project-auto-load'). Projects loaded from the |
| @@ -1539,8 +1539,8 @@ Option `vhdl-align-groups' still applies within these blocks." | |||
| 1539 | :group 'vhdl-beautify) | 1539 | :group 'vhdl-beautify) |
| 1540 | 1540 | ||
| 1541 | (defcustom vhdl-beautify-options '(t t t t t) | 1541 | (defcustom vhdl-beautify-options '(t t t t t) |
| 1542 | "List of options for beautifying code. Allows to disable individual | 1542 | "List of options for beautifying code. |
| 1543 | features of code beautification." | 1543 | Allows you to disable individual features of code beautification." |
| 1544 | :type '(list (boolean :tag "Whitespace cleanup ") | 1544 | :type '(list (boolean :tag "Whitespace cleanup ") |
| 1545 | (boolean :tag "Single statement per line") | 1545 | (boolean :tag "Single statement per line") |
| 1546 | (boolean :tag "Indentation ") | 1546 | (boolean :tag "Indentation ") |
| @@ -4384,7 +4384,7 @@ Usage: | |||
| 4384 | and vice versa. | 4384 | and vice versa. |
| 4385 | 4385 | ||
| 4386 | Syntax-based indentation can be very slow in large files. Option | 4386 | Syntax-based indentation can be very slow in large files. Option |
| 4387 | `vhdl-indent-syntax-based' allows to use faster but simpler indentation. | 4387 | `vhdl-indent-syntax-based' allows you to use faster but simpler indentation. |
| 4388 | 4388 | ||
| 4389 | Option `vhdl-indent-comment-like-next-code-line' controls whether | 4389 | Option `vhdl-indent-comment-like-next-code-line' controls whether |
| 4390 | comment lines are indented like the preceding or like the following code | 4390 | comment lines are indented like the preceding or like the following code |
| @@ -4417,7 +4417,7 @@ Usage: | |||
| 4417 | 4417 | ||
| 4418 | 4418 | ||
| 4419 | CODE FILLING: | 4419 | CODE FILLING: |
| 4420 | Code filling allows to condense code (e.g. sensitivity lists or port | 4420 | Code filling allows you to condense code (e.g. sensitivity lists or port |
| 4421 | maps) by removing comments and newlines and re-wrapping so that all | 4421 | maps) by removing comments and newlines and re-wrapping so that all |
| 4422 | lines are maximally filled (block filling). `C-c C-f C-f' fills a list | 4422 | lines are maximally filled (block filling). `C-c C-f C-f' fills a list |
| 4423 | enclosed by parenthesis, `C-c C-f C-g' a group of lines separated by | 4423 | enclosed by parenthesis, `C-c C-f C-g' a group of lines separated by |
| @@ -4677,7 +4677,7 @@ Usage: | |||
| 4677 | 4677 | ||
| 4678 | Words with special syntax can be highlighted by specifying their | 4678 | Words with special syntax can be highlighted by specifying their |
| 4679 | syntax and color in option `vhdl-special-syntax-alist' and by setting | 4679 | syntax and color in option `vhdl-special-syntax-alist' and by setting |
| 4680 | option `vhdl-highlight-special-words' to non-nil. This allows to | 4680 | option `vhdl-highlight-special-words' to non-nil. This allows you to |
| 4681 | establish some naming conventions (e.g. to distinguish different kinds | 4681 | establish some naming conventions (e.g. to distinguish different kinds |
| 4682 | of signals or other objects by using name suffices) and to support them | 4682 | of signals or other objects by using name suffices) and to support them |
| 4683 | visually. | 4683 | visually. |
| @@ -16903,7 +16903,7 @@ do not print any file names." | |||
| 16903 | 16903 | ||
| 16904 | (defun vhdl-make (&optional target) | 16904 | (defun vhdl-make (&optional target) |
| 16905 | "Call make command for compilation of all updated source files (requires | 16905 | "Call make command for compilation of all updated source files (requires |
| 16906 | `Makefile'). Optional argument TARGET allows to compile the design | 16906 | `Makefile'). Optional argument TARGET allows you to compile the design |
| 16907 | specified by a target." | 16907 | specified by a target." |
| 16908 | (interactive) | 16908 | (interactive) |
| 16909 | (setq vhdl-make-target | 16909 | (setq vhdl-make-target |