|
15 | 15 | # outputs. This file is the input to the fixstrs program, and it |
16 | 16 | # outputs strings.h and strings.dat. The .DAT file is appended to |
17 | 17 | # the command.exe file, and then renamed to command.com. The .H |
18 | | -# file contains all the info for the program to retreive the |
| 18 | +# file contains all the info for the program to retrieve the |
19 | 19 | # messages. |
20 | 20 | # |
21 | 21 | # The format of this file is simple. Blank lines and lines starting |
|
35 | 35 | # |
36 | 36 | # All lines after the label are the message until a line with a |
37 | 37 | # single "." or "," in the first column. The difference is the |
38 | | -# period (".") signifies that there will be a final carrage return when |
| 38 | +# period (".") signifies that there will be a final carriage return when |
39 | 39 | # the message is displayed, but a comma does not. |
40 | 40 | # |
41 | 41 | # The body may contain backslash escape sequences as known from C; there |
|
55 | 55 |
|
56 | 56 | # Defining prompts |
57 | 57 | # Some prompts may cause an user interaction. Those ones should be in sync |
58 | | -# with the issued text. To define how to interprete a pressed key, they |
| 58 | +# with the issued text. To define how to interpret a pressed key, they |
59 | 59 | # are mapped into metakeys like that: [ignore first hash sign] |
60 | 60 |
|
61 | 61 | ## Return value: a -> Yes; else -> No |
|
67 | 67 |
|
68 | 68 | # All strings, which label start with "PROMPT_", are parsed as prompts. |
69 | 69 | # The first two lines of the body are special; the first one enumerates all |
70 | | -# valid keys, the second one assigns arbitary metakeys. Metakeys may |
| 70 | +# valid keys, the second one assigns arbitrary metakeys. Metakeys may |
71 | 71 | # range from 'a' through 'z'; spaces are ignored; everything else cause |
72 | | -# an error. The comment preceeding the prompt definition associates the |
| 72 | +# an error. The comment preceding the prompt definition associates the |
73 | 73 | # metakeys with their meaning. |
74 | 74 | # The remaining lines of the body contain the text to be displayed. |
75 | 75 | # |
|
80 | 80 | # 'N', 'n', Enter and ^Break are mapped to metakey 'b' (aka No). |
81 | 81 | # The spaces between the 'b's in the second line had been inserted to |
82 | 82 | # align them with the corresponding keys of the first line, hence in order |
83 | | -# to enhance readibility of the association between the pressed keys and their |
| 83 | +# to enhance readability of the association between the pressed keys and their |
84 | 84 | # mapping into a metakey. |
85 | 85 | # |
86 | 86 | # The first line (pressed keys) has to enumerate the ASCII value as returned |
|
0 commit comments