aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2014-10-30 21:14:27 -0700
committerGlenn Morris2014-10-30 21:14:27 -0700
commit792faabe7a17a8f2fc2dd21076b69de2fc3edb65 (patch)
treec4ad10268dabc6327717802790d251970b19b363
parent0ebcd35e7637e5b17f78504a482ae1c4219bf149 (diff)
downloademacs-792faabe7a17a8f2fc2dd21076b69de2fc3edb65.tar.gz
emacs-792faabe7a17a8f2fc2dd21076b69de2fc3edb65.zip
* lisp/progmodes/vhdl-mode.el: Doc grammar fixes.
-rw-r--r--lisp/progmodes/vhdl-mode.el24
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.
503Automatically generated Makefiles include three default targets to compile 503Automatically generated Makefiles include three default targets to compile
504the entire design, clean the entire design and to create the design library. 504the entire design, clean the entire design and to create the design library.
505This option allows to change the names of these targets to avoid conflicts 505This option allows you to change the names of these targets to avoid conflicts
506with other user Makefiles." 506with 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.
515Allows to insert user specific parts into a Makefile. 515Allows you to insert user specific parts into a Makefile.
516 516
517Example: 517Example:
518 \(lambda nil 518 \(lambda nil
@@ -589,8 +589,8 @@ well as \"./\" and \"../\" (\"sh\" syntax). Paths can also be absolute.
589Environment variables (e.g. \"$EXAMPLE2\") are resolved. If no sources are 589Environment variables (e.g. \"$EXAMPLE2\") are resolved. If no sources are
590specified, the default directory is taken as source directory. Otherwise, 590specified, the default directory is taken as source directory. Otherwise,
591the default directory is only taken as source directory if there is a sources 591the default directory is only taken as source directory if there is a sources
592entry with the empty string or \"./\". Exclude regexp allows to filter out 592entry with the empty string or \"./\". Exclude regexp allows you to filter
593specific file and directory names from the list of sources (e.g. CVS 593out specific file and directory names from the list of sources (e.g. CVS
594directories). 594directories).
595 595
596Files are compiled in the compile directory. Makefiles are also placed into 596Files are compiled in the compile directory. Makefiles are also placed into
@@ -605,7 +605,7 @@ overwrite the settings of the current compiler.
605 605
606File-specific compiler options (highest priority) overwrite project-specific 606File-specific compiler options (highest priority) overwrite project-specific
607options which overwrite default options (lowest priority). Lower priority 607options which overwrite default options (lowest priority). Lower priority
608options can be inserted in higher priority options. This allows to reuse 608options can be inserted in higher priority options. This allows you to reuse
609default options (e.g. \"-file\") in project- or file-specific options (e.g. 609default 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
673replaced by the user name (allows to have user-specific project setups). 673replaced by the user name (allows you to have user-specific project setups).
674The first entry is used as file name to import/export individual project 674The first entry is used as file name to import/export individual project
675setups. All entries are used to automatically import project setups at 675setups. All entries are used to automatically import project setups at
676startup (see option `vhdl-project-auto-load'). Projects loaded from the 676startup (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.
1543features of code beautification." 1543Allows 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
16907specified by a target." 16907specified by a target."
16908 (interactive) 16908 (interactive)
16909 (setq vhdl-make-target 16909 (setq vhdl-make-target