diff options
| author | Richard M. Stallman | 2006-10-19 12:46:54 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2006-10-19 12:46:54 +0000 |
| commit | 7da31552c7ee1aae9193ddb46296e2e0d417aea0 (patch) | |
| tree | c0bdc3d98a9c91c70f7e5e4a543bb8ac5ea166bb | |
| parent | 2b192902e9fcdcbebcd9b7df1a7c749808e6014e (diff) | |
| download | emacs-7da31552c7ee1aae9193ddb46296e2e0d417aea0.tar.gz emacs-7da31552c7ee1aae9193ddb46296e2e0d417aea0.zip | |
Fix typos.
| -rw-r--r-- | man/ChangeLog | 4 | ||||
| -rw-r--r-- | man/widget.texi | 18 |
2 files changed, 13 insertions, 9 deletions
diff --git a/man/ChangeLog b/man/ChangeLog index a4d3cb53808..46d5c2934a1 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-10-19 Stuart D. Herring <herring@lanl.gov> | ||
| 2 | |||
| 3 | * widget.texi: Fix typos. | ||
| 4 | |||
| 1 | 2006-10-19 Michael Albinus <michael.albinus@gmx.de> | 5 | 2006-10-19 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 6 | ||
| 3 | * tramp.texi (Frequently Asked Questions): Remove questions marked with | 7 | * tramp.texi (Frequently Asked Questions): Remove questions marked with |
diff --git a/man/widget.texi b/man/widget.texi index 39b62ff3437..79ec7ab0d0b 100644 --- a/man/widget.texi +++ b/man/widget.texi | |||
| @@ -909,7 +909,7 @@ Syntax: | |||
| 909 | 909 | ||
| 910 | The component types specify the choices, with one radio button for | 910 | The component types specify the choices, with one radio button for |
| 911 | each. The widget's value will be that of the chosen @var{type} | 911 | each. The widget's value will be that of the chosen @var{type} |
| 912 | argument. This widget matches any value that matching at least one of | 912 | argument. This widget matches any value that matches at least one of |
| 913 | the specified @var{type} arguments. | 913 | the specified @var{type} arguments. |
| 914 | 914 | ||
| 915 | The following extra properties are recognized. | 915 | The following extra properties are recognized. |
| @@ -1351,8 +1351,8 @@ and @sc{cdr} have two specified types. It uses this syntax: | |||
| 1351 | @end deffn | 1351 | @end deffn |
| 1352 | 1352 | ||
| 1353 | @deffn Widget choice | 1353 | @deffn Widget choice |
| 1354 | The @code{choice} widget specifies a set of values that match any one | 1354 | The value matched by a @code{choice} widget must have one of a fixed |
| 1355 | of a fixed set of types. Its syntax is as follows: | 1355 | set of types. The widget's syntax is as follows: |
| 1356 | 1356 | ||
| 1357 | @example | 1357 | @example |
| 1358 | @var{type} ::= (choice [@var{keyword} @var{argument}]... @var{type} ... ) | 1358 | @var{type} ::= (choice [@var{keyword} @var{argument}]... @var{type} ... ) |
| @@ -1384,12 +1384,12 @@ a number. | |||
| 1384 | The above suffice for specifying fixed size lists and vectors. To get | 1384 | The above suffice for specifying fixed size lists and vectors. To get |
| 1385 | variable length lists and vectors, you can use a @code{choice}, | 1385 | variable length lists and vectors, you can use a @code{choice}, |
| 1386 | @code{set}, or @code{repeat} widget together with the @code{:inline} | 1386 | @code{set}, or @code{repeat} widget together with the @code{:inline} |
| 1387 | keyword. If any component of a composite widget has the @code{:inline} | 1387 | keyword. If any component of a composite widget has the |
| 1388 | keyword set, its value must be a list which will then be spliced into | 1388 | @code{:inline} keyword set, its value must be a list which will then |
| 1389 | the composite. For example, to specify a list whose first element must | 1389 | be spliced into the composite. For example, to specify a list whose |
| 1390 | be a file name, and whose remaining elements should either be the | 1390 | first element must be a file name, and whose remaining elements should |
| 1391 | symbol @code{t} or two files, you can use the following widget | 1391 | either be the symbol @code{t} or two strings (file names), you can use |
| 1392 | specification: | 1392 | the following widget specification: |
| 1393 | 1393 | ||
| 1394 | @example | 1394 | @example |
| 1395 | (list file | 1395 | (list file |