Home » Personal collection » Acorn ADFS disks » Electron_User_Group » EUG_16.ADF » PROGS/VEWCHK/v-chk-doc

PROGS/VEWCHK/v-chk-doc

This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.

Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.

Tape/disk: Home » Personal collection » Acorn ADFS disks » Electron_User_Group » EUG_16.ADF
Filename: PROGS/VEWCHK/v-chk-doc
Read OK:
File size: 0DD3 bytes
Load address: 000D
Exec address: 1010101
File contents
�.........*.......*.......*.......*.......*.......*.......*.......*.......*.<
VIEWCHECK
Many moons ago the eu published a basic spell checking program. I have for
the past year or so been using it and tweaking as shortcomings became
apparent. It is still fundamentally the published program, but I have made
both cosmetic and functional differences enough to call it v2. I now think
it is quite a tasty little program and I prefer it to the copy of
ViewSpell I recently acquired. 

The big pro with this one is that it learns as it goes, which means it
quickly moulds itself to your own style. For example, if you write reports
about the manufacture of military headware your vocab is going to be
radically different from a frog and princess type fairy story. I have set
the code to call a fixed dictionary name (Currently DICTIONARY), but you
may want to be able to request the dictionary you require at run-time. The
code to revert to a requested dictionary in PROCinitialise is tacked on to
the end as three REM statements.

VIEWCHECK is really meant for those lucky souls whose spellink is already
pretty good. If your spillenk is so bad you can't use a dictionary this
program is not for you at all. You also need to be able to remember what
you've written, it cannot put the selected words into context.  You need
to built up a decent dictionary before it comes into own, I suggest going
through a few of your old reports/letters etc which you KNOW are spelt
correctly first and then venture into less certain territory.

DEMO - I have included a demo file called FROG and an incomplete
dictionary file to use.

BORING BUT NECESSARY STUFF

For the technically minded - 
An updatable dictionary is read into memory, VIEWCHECK reads a chunk of
the source file, splits out each word as a group of one or more defined
characters between spaces,  slices off common endings (ing, tion 's etc)
and common beginnings (in, un etc) and compares the resulting truncated
word with the dictionary previously read into memory.  The  truncation
routine is there to reduce the size of the dictionary read and updated  in
limited memory space. If found the word is passed, if not found the
operator is asked from the screen to i)gnore, r)eplace or a)dd the word
displayed. If the r)eplace option is taken VIEWCHECK will  repeat the
processing for a word, offering it for i)gnore, r)eplace or a)dd if not
found. When VIEWCHECK is finished the source file remains intact,  a new
file called TEXT is written and the  updated dictionary re-written. TEXT
differs from the source file only by words r)eplace'd: a)dd and i)gnore
have no affect on TEXT. VIEWCHECK can be used with any WP spooled file.
This version of VIEWCHECK is meant for use on a disc based 8 bit Acorn.

For the user minded - 
Save the file to be checked, start VIEWCHECK, answer the question about
file name (and if so amended the dictionary name) your file is scanned and
any words not recognised displayed on screen. If the word is  correctly
spelt and you want it added to the dictionary press a for add, if correct
but not to be added press i)gnore. If the word is incorrect (or you just
want to change it) press r to replace, and type in your new word. If the
program  doesn't recognise the word you r)eplace it will offer it to you
for i)gnore, r)eplace or a)dd again. At the end a new file is created
called TEXT which you should rename before next using VIEWCHECK.
00000000  81 2e 2e 2e 2e 2e 2e 2e  2e 2e 2a 2e 2e 2e 2e 2e  |..........*.....|
00000010  2e 2e 2a 2e 2e 2e 2e 2e  2e 2e 2a 2e 2e 2e 2e 2e  |..*.......*.....|
*
00000040  2e 2e 2a 2e 2e 2e 2e 2e  2e 2e 2a 2e 3c 0d 56 49  |..*.......*.<.VI|
00000050  45 57 43 48 45 43 4b 0d  4d 61 6e 79 20 6d 6f 6f  |EWCHECK.Many moo|
00000060  6e 73 20 61 67 6f 20 74  68 65 20 65 75 20 70 75  |ns ago the eu pu|
00000070  62 6c 69 73 68 65 64 20  61 20 62 61 73 69 63 20  |blished a basic |
00000080  73 70 65 6c 6c 20 63 68  65 63 6b 69 6e 67 20 70  |spell checking p|
00000090  72 6f 67 72 61 6d 2e 20  49 20 68 61 76 65 20 66  |rogram. I have f|
000000a0  6f 72 0d 74 68 65 20 70  61 73 74 20 79 65 61 72  |or.the past year|
000000b0  20 6f 72 20 73 6f 1a 20  62 65 65 6e 1a 20 75 73  | or so. been. us|
000000c0  69 6e 67 1a 20 69 74 1a  20 61 6e 64 1a 20 74 77  |ing. it. and. tw|
000000d0  65 61 6b 69 6e 67 20 61  73 20 73 68 6f 72 74 63  |eaking as shortc|
000000e0  6f 6d 69 6e 67 73 20 62  65 63 61 6d 65 0d 61 70  |omings became.ap|
000000f0  70 61 72 65 6e 74 2e 20  49 74 20 69 73 20 73 74  |parent. It is st|
00000100  69 6c 6c 20 66 75 6e 64  61 6d 65 6e 74 61 6c 6c  |ill fundamentall|
00000110  79 20 74 68 65 20 70 75  62 6c 69 73 68 65 64 20  |y the published |
00000120  70 72 6f 67 72 61 6d 2c  20 62 75 74 20 49 20 68  |program, but I h|
00000130  61 76 65 20 6d 61 64 65  0d 62 6f 74 68 20 63 6f  |ave made.both co|
00000140  73 6d 65 74 69 63 20 61  6e 64 20 66 75 6e 63 74  |smetic and funct|
00000150  69 6f 6e 61 6c 20 64 69  66 66 65 72 65 6e 63 65  |ional difference|
00000160  73 20 65 6e 6f 75 67 68  20 74 6f 20 63 61 6c 6c  |s enough to call|
00000170  20 69 74 20 76 32 2e 20  49 20 6e 6f 77 20 74 68  | it v2. I now th|
00000180  69 6e 6b 0d 69 74 20 69  73 20 71 75 69 74 65 20  |ink.it is quite |
00000190  61 20 74 61 73 74 79 1a  20 6c 69 74 74 6c 65 1a  |a tasty. little.|
000001a0  20 70 72 6f 67 72 61 6d  1a 20 61 6e 64 1a 20 49  | program. and. I|
000001b0  1a 20 70 72 65 66 65 72  1a 20 69 74 1a 20 74 6f  |. prefer. it. to|
000001c0  1a 20 74 68 65 1a 20 63  6f 70 79 20 6f 66 0d 56  |. the. copy of.V|
000001d0  69 65 77 53 70 65 6c 6c  20 49 20 72 65 63 65 6e  |iewSpell I recen|
000001e0  74 6c 79 20 61 63 71 75  69 72 65 64 2e 20 0d 0d  |tly acquired. ..|
000001f0  54 68 65 20 62 69 67 20  70 72 6f 20 77 69 74 68  |The big pro with|
00000200  20 74 68 69 73 1a 20 6f  6e 65 1a 20 69 73 1a 20  | this. one. is. |
00000210  74 68 61 74 1a 20 69 74  20 6c 65 61 72 6e 73 20  |that. it learns |
00000220  61 73 20 69 74 20 67 6f  65 73 2c 20 77 68 69 63  |as it goes, whic|
00000230  68 20 6d 65 61 6e 73 20  69 74 0d 71 75 69 63 6b  |h means it.quick|
00000240  6c 79 20 6d 6f 75 6c 64  73 20 69 74 73 65 6c 66  |ly moulds itself|
00000250  20 74 6f 20 79 6f 75 72  20 6f 77 6e 20 73 74 79  | to your own sty|
00000260  6c 65 2e 20 46 6f 72 20  65 78 61 6d 70 6c 65 2c  |le. For example,|
00000270  20 69 66 20 79 6f 75 20  77 72 69 74 65 20 72 65  | if you write re|
00000280  70 6f 72 74 73 0d 61 62  6f 75 74 1a 20 74 68 65  |ports.about. the|
00000290  1a 20 6d 61 6e 75 66 61  63 74 75 72 65 1a 20 6f  |. manufacture. o|
000002a0  66 20 6d 69 6c 69 74 61  72 79 20 68 65 61 64 77  |f military headw|
000002b0  61 72 65 20 79 6f 75 72  20 76 6f 63 61 62 20 69  |are your vocab i|
000002c0  73 1a 20 67 6f 69 6e 67  1a 20 74 6f 1a 20 62 65  |s. going. to. be|
000002d0  0d 72 61 64 69 63 61 6c  6c 79 20 64 69 66 66 65  |.radically diffe|
000002e0  72 65 6e 74 20 66 72 6f  6d 20 61 20 66 72 6f 67  |rent from a frog|
000002f0  20 61 6e 64 1a 20 70 72  69 6e 63 65 73 73 20 74  | and. princess t|
00000300  79 70 65 20 66 61 69 72  79 20 73 74 6f 72 79 2e  |ype fairy story.|
00000310  20 49 20 68 61 76 65 20  73 65 74 0d 74 68 65 20  | I have set.the |
00000320  63 6f 64 65 20 74 6f 20  63 61 6c 6c 20 61 20 66  |code to call a f|
00000330  69 78 65 64 20 64 69 63  74 69 6f 6e 61 72 79 1a  |ixed dictionary.|
00000340  20 6e 61 6d 65 1a 20 28  43 75 72 72 65 6e 74 6c  | name. (Currentl|
00000350  79 20 44 49 43 54 49 4f  4e 41 52 59 29 2c 20 62  |y DICTIONARY), b|
00000360  75 74 20 79 6f 75 0d 6d  61 79 20 77 61 6e 74 20  |ut you.may want |
00000370  74 6f 20 62 65 20 61 62  6c 65 20 74 6f 20 72 65  |to be able to re|
00000380  71 75 65 73 74 20 74 68  65 20 64 69 63 74 69 6f  |quest the dictio|
00000390  6e 61 72 79 20 79 6f 75  20 72 65 71 75 69 72 65  |nary you require|
000003a0  20 61 74 20 72 75 6e 2d  74 69 6d 65 2e 20 54 68  | at run-time. Th|
000003b0  65 0d 63 6f 64 65 20 74  6f 20 72 65 76 65 72 74  |e.code to revert|
000003c0  20 74 6f 20 61 20 72 65  71 75 65 73 74 65 64 20  | to a requested |
000003d0  64 69 63 74 69 6f 6e 61  72 79 20 69 6e 20 50 52  |dictionary in PR|
000003e0  4f 43 69 6e 69 74 69 61  6c 69 73 65 20 69 73 20  |OCinitialise is |
000003f0  74 61 63 6b 65 64 20 6f  6e 20 74 6f 0d 74 68 65  |tacked on to.the|
00000400  20 65 6e 64 20 61 73 20  74 68 72 65 65 20 52 45  | end as three RE|
00000410  4d 20 73 74 61 74 65 6d  65 6e 74 73 2e 0d 0d 56  |M statements...V|
00000420  49 45 57 43 48 45 43 4b  20 69 73 20 72 65 61 6c  |IEWCHECK is real|
00000430  6c 79 20 6d 65 61 6e 74  20 66 6f 72 1a 20 74 68  |ly meant for. th|
00000440  6f 73 65 20 6c 75 63 6b  79 20 73 6f 75 6c 73 20  |ose lucky souls |
00000450  77 68 6f 73 65 20 73 70  65 6c 6c 69 6e 6b 20 69  |whose spellink i|
00000460  73 20 61 6c 72 65 61 64  79 0d 70 72 65 74 74 79  |s already.pretty|
00000470  20 67 6f 6f 64 2e 20 49  66 20 79 6f 75 72 20 73  | good. If your s|
00000480  70 69 6c 6c 65 6e 6b 20  69 73 1a 20 73 6f 1a 20  |pillenk is. so. |
00000490  62 61 64 1a 20 79 6f 75  20 63 61 6e 27 74 20 75  |bad. you can't u|
000004a0  73 65 20 61 20 64 69 63  74 69 6f 6e 61 72 79 20  |se a dictionary |
000004b0  74 68 69 73 0d 70 72 6f  67 72 61 6d 20 69 73 20  |this.program is |
000004c0  6e 6f 74 20 66 6f 72 20  79 6f 75 20 61 74 20 61  |not for you at a|
000004d0  6c 6c 2e 20 59 6f 75 20  61 6c 73 6f 1a 20 6e 65  |ll. You also. ne|
000004e0  65 64 1a 20 74 6f 20 62  65 20 61 62 6c 65 20 74  |ed. to be able t|
000004f0  6f 20 72 65 6d 65 6d 62  65 72 20 77 68 61 74 0d  |o remember what.|
00000500  79 6f 75 27 76 65 1a 20  77 72 69 74 74 65 6e 2c  |you've. written,|
00000510  1a 20 69 74 20 63 61 6e  6e 6f 74 20 70 75 74 20  |. it cannot put |
00000520  74 68 65 20 73 65 6c 65  63 74 65 64 20 77 6f 72  |the selected wor|
00000530  64 73 20 69 6e 74 6f 20  63 6f 6e 74 65 78 74 2e  |ds into context.|
00000540  20 20 59 6f 75 20 6e 65  65 64 0d 74 6f 20 62 75  |  You need.to bu|
00000550  69 6c 74 20 75 70 1a 20  61 20 64 65 63 65 6e 74  |ilt up. a decent|
00000560  20 64 69 63 74 69 6f 6e  61 72 79 20 62 65 66 6f  | dictionary befo|
00000570  72 65 20 69 74 20 63 6f  6d 65 73 20 69 6e 74 6f  |re it comes into|
00000580  20 6f 77 6e 2c 20 49 20  73 75 67 67 65 73 74 20  | own, I suggest |
00000590  67 6f 69 6e 67 0d 74 68  72 6f 75 67 68 20 61 20  |going.through a |
000005a0  66 65 77 20 6f 66 1a 20  79 6f 75 72 1a 20 6f 6c  |few of. your. ol|
000005b0  64 1a 20 72 65 70 6f 72  74 73 2f 6c 65 74 74 65  |d. reports/lette|
000005c0  72 73 1a 20 65 74 63 20  77 68 69 63 68 20 79 6f  |rs. etc which yo|
000005d0  75 20 4b 4e 4f 57 20 61  72 65 20 73 70 65 6c 74  |u KNOW are spelt|
000005e0  0d 63 6f 72 72 65 63 74  6c 79 20 66 69 72 73 74  |.correctly first|
000005f0  20 61 6e 64 20 74 68 65  6e 20 76 65 6e 74 75 72  | and then ventur|
00000600  65 20 69 6e 74 6f 20 6c  65 73 73 20 63 65 72 74  |e into less cert|
00000610  61 69 6e 20 74 65 72 72  69 74 6f 72 79 2e 0d 0d  |ain territory...|
00000620  44 45 4d 4f 1a 20 2d 1a  20 49 20 68 61 76 65 20  |DEMO. -. I have |
00000630  69 6e 63 6c 75 64 65 64  1a 20 61 1a 20 64 65 6d  |included. a. dem|
00000640  6f 1a 20 66 69 6c 65 1a  20 63 61 6c 6c 65 64 1a  |o. file. called.|
00000650  20 46 52 4f 47 1a 20 61  6e 64 1a 20 61 6e 1a 20  | FROG. and. an. |
00000660  69 6e 63 6f 6d 70 6c 65  74 65 0d 64 69 63 74 69  |incomplete.dicti|
00000670  6f 6e 61 72 79 20 66 69  6c 65 20 74 6f 20 75 73  |onary file to us|
00000680  65 2e 0d 0d 42 4f 52 49  4e 47 20 42 55 54 20 4e  |e...BORING BUT N|
00000690  45 43 45 53 53 41 52 59  20 53 54 55 46 46 0d 0d  |ECESSARY STUFF..|
000006a0  46 6f 72 20 74 68 65 20  74 65 63 68 6e 69 63 61  |For the technica|
000006b0  6c 6c 79 20 6d 69 6e 64  65 64 20 2d 1a 20 0d 41  |lly minded -. .A|
000006c0  6e 20 75 70 64 61 74 61  62 6c 65 20 64 69 63 74  |n updatable dict|
000006d0  69 6f 6e 61 72 79 20 69  73 20 72 65 61 64 1a 20  |ionary is read. |
000006e0  69 6e 74 6f 1a 20 6d 65  6d 6f 72 79 2c 1a 20 56  |into. memory,. V|
000006f0  49 45 57 43 48 45 43 4b  20 72 65 61 64 73 20 61  |IEWCHECK reads a|
00000700  20 63 68 75 6e 6b 20 6f  66 0d 74 68 65 20 73 6f  | chunk of.the so|
00000710  75 72 63 65 20 66 69 6c  65 2c 20 73 70 6c 69 74  |urce file, split|
00000720  73 20 6f 75 74 20 65 61  63 68 20 77 6f 72 64 20  |s out each word |
00000730  61 73 1a 20 61 1a 20 67  72 6f 75 70 1a 20 6f 66  |as. a. group. of|
00000740  20 6f 6e 65 20 6f 72 20  6d 6f 72 65 20 64 65 66  | one or more def|
00000750  69 6e 65 64 0d 63 68 61  72 61 63 74 65 72 73 1a  |ined.characters.|
00000760  20 62 65 74 77 65 65 6e  1a 20 73 70 61 63 65 73  | between. spaces|
00000770  2c 20 20 73 6c 69 63 65  73 20 6f 66 66 20 63 6f  |,  slices off co|
00000780  6d 6d 6f 6e 20 65 6e 64  69 6e 67 73 20 28 69 6e  |mmon endings (in|
00000790  67 2c 20 74 69 6f 6e 20  27 73 20 65 74 63 29 0d  |g, tion 's etc).|
000007a0  61 6e 64 20 63 6f 6d 6d  6f 6e 20 62 65 67 69 6e  |and common begin|
000007b0  6e 69 6e 67 73 1a 20 28  69 6e 2c 1a 20 75 6e 1a  |nings. (in,. un.|
000007c0  20 65 74 63 29 20 61 6e  64 20 63 6f 6d 70 61 72  | etc) and compar|
000007d0  65 73 20 74 68 65 20 72  65 73 75 6c 74 69 6e 67  |es the resulting|
000007e0  20 74 72 75 6e 63 61 74  65 64 0d 77 6f 72 64 20  | truncated.word |
000007f0  77 69 74 68 20 74 68 65  20 64 69 63 74 69 6f 6e  |with the diction|
00000800  61 72 79 20 70 72 65 76  69 6f 75 73 6c 79 1a 20  |ary previously. |
00000810  72 65 61 64 1a 20 69 6e  74 6f 1a 20 6d 65 6d 6f  |read. into. memo|
00000820  72 79 2e 1a 20 20 54 68  65 20 20 74 72 75 6e 63  |ry..  The  trunc|
00000830  61 74 69 6f 6e 0d 72 6f  75 74 69 6e 65 20 69 73  |ation.routine is|
00000840  20 74 68 65 72 65 20 74  6f 20 72 65 64 75 63 65  | there to reduce|
00000850  20 74 68 65 20 73 69 7a  65 20 6f 66 20 74 68 65  | the size of the|
00000860  20 64 69 63 74 69 6f 6e  61 72 79 20 72 65 61 64  | dictionary read|
00000870  20 61 6e 64 20 75 70 64  61 74 65 64 20 20 69 6e  | and updated  in|
00000880  0d 6c 69 6d 69 74 65 64  20 6d 65 6d 6f 72 79 20  |.limited memory |
00000890  73 70 61 63 65 2e 20 49  66 20 66 6f 75 6e 64 1a  |space. If found.|
000008a0  20 74 68 65 1a 20 77 6f  72 64 1a 20 69 73 1a 20  | the. word. is. |
000008b0  70 61 73 73 65 64 2c 1a  20 69 66 1a 20 6e 6f 74  |passed,. if. not|
000008c0  1a 20 66 6f 75 6e 64 20  74 68 65 0d 6f 70 65 72  |. found the.oper|
000008d0  61 74 6f 72 20 69 73 20  61 73 6b 65 64 20 66 72  |ator is asked fr|
000008e0  6f 6d 20 74 68 65 1a 20  73 63 72 65 65 6e 1a 20  |om the. screen. |
000008f0  74 6f 1a 20 69 29 67 6e  6f 72 65 2c 20 72 29 65  |to. i)gnore, r)e|
00000900  70 6c 61 63 65 20 6f 72  20 61 29 64 64 20 74 68  |place or a)dd th|
00000910  65 20 77 6f 72 64 0d 64  69 73 70 6c 61 79 65 64  |e word.displayed|
00000920  2e 1a 20 49 66 1a 20 74  68 65 20 72 29 65 70 6c  |.. If. the r)epl|
00000930  61 63 65 20 6f 70 74 69  6f 6e 20 69 73 20 74 61  |ace option is ta|
00000940  6b 65 6e 20 56 49 45 57  43 48 45 43 4b 1a 20 77  |ken VIEWCHECK. w|
00000950  69 6c 6c 1a 20 20 72 65  70 65 61 74 1a 20 74 68  |ill.  repeat. th|
00000960  65 0d 70 72 6f 63 65 73  73 69 6e 67 20 66 6f 72  |e.processing for|
00000970  20 61 1a 20 77 6f 72 64  2c 20 6f 66 66 65 72 69  | a. word, offeri|
00000980  6e 67 20 69 74 1a 20 66  6f 72 1a 20 69 29 67 6e  |ng it. for. i)gn|
00000990  6f 72 65 2c 20 72 29 65  70 6c 61 63 65 20 6f 72  |ore, r)eplace or|
000009a0  20 61 29 64 64 20 69 66  20 6e 6f 74 0d 66 6f 75  | a)dd if not.fou|
000009b0  6e 64 2e 20 57 68 65 6e  20 56 49 45 57 43 48 45  |nd. When VIEWCHE|
000009c0  43 4b 20 69 73 20 66 69  6e 69 73 68 65 64 1a 20  |CK is finished. |
000009d0  74 68 65 1a 20 73 6f 75  72 63 65 20 66 69 6c 65  |the. source file|
000009e0  20 72 65 6d 61 69 6e 73  20 69 6e 74 61 63 74 2c  | remains intact,|
000009f0  20 20 61 20 6e 65 77 0d  66 69 6c 65 20 63 61 6c  |  a new.file cal|
00000a00  6c 65 64 20 54 45 58 54  20 69 73 20 77 72 69 74  |led TEXT is writ|
00000a10  74 65 6e 20 61 6e 64 20  74 68 65 1a 20 20 75 70  |ten and the.  up|
00000a20  64 61 74 65 64 1a 20 64  69 63 74 69 6f 6e 61 72  |dated. dictionar|
00000a30  79 20 72 65 2d 77 72 69  74 74 65 6e 2e 20 54 45  |y re-written. TE|
00000a40  58 54 0d 64 69 66 66 65  72 73 20 66 72 6f 6d 20  |XT.differs from |
00000a50  74 68 65 20 73 6f 75 72  63 65 20 66 69 6c 65 20  |the source file |
00000a60  6f 6e 6c 79 20 62 79 20  77 6f 72 64 73 20 72 29  |only by words r)|
00000a70  65 70 6c 61 63 65 27 64  3a 1a 20 61 29 64 64 1a  |eplace'd:. a)dd.|
00000a80  20 61 6e 64 1a 20 69 29  67 6e 6f 72 65 0d 68 61  | and. i)gnore.ha|
00000a90  76 65 1a 20 6e 6f 1a 20  61 66 66 65 63 74 1a 20  |ve. no. affect. |
00000aa0  6f 6e 20 54 45 58 54 2e  20 56 49 45 57 43 48 45  |on TEXT. VIEWCHE|
00000ab0  43 4b 20 63 61 6e 20 62  65 20 75 73 65 64 20 77  |CK can be used w|
00000ac0  69 74 68 20 61 6e 79 20  57 50 20 73 70 6f 6f 6c  |ith any WP spool|
00000ad0  65 64 20 66 69 6c 65 2e  0d 54 68 69 73 20 76 65  |ed file..This ve|
00000ae0  72 73 69 6f 6e 20 6f 66  20 56 49 45 57 43 48 45  |rsion of VIEWCHE|
00000af0  43 4b 20 69 73 20 6d 65  61 6e 74 20 66 6f 72 20  |CK is meant for |
00000b00  75 73 65 20 6f 6e 20 61  20 64 69 73 63 20 62 61  |use on a disc ba|
00000b10  73 65 64 20 38 20 62 69  74 20 41 63 6f 72 6e 2e  |sed 8 bit Acorn.|
00000b20  0d 0d 46 6f 72 20 74 68  65 20 75 73 65 72 20 6d  |..For the user m|
00000b30  69 6e 64 65 64 20 2d 1a  20 0d 53 61 76 65 20 74  |inded -. .Save t|
00000b40  68 65 20 66 69 6c 65 20  74 6f 20 62 65 1a 20 63  |he file to be. c|
00000b50  68 65 63 6b 65 64 2c 1a  20 73 74 61 72 74 1a 20  |hecked,. start. |
00000b60  56 49 45 57 43 48 45 43  4b 2c 20 61 6e 73 77 65  |VIEWCHECK, answe|
00000b70  72 20 74 68 65 20 71 75  65 73 74 69 6f 6e 20 61  |r the question a|
00000b80  62 6f 75 74 0d 66 69 6c  65 20 6e 61 6d 65 20 28  |bout.file name (|
00000b90  61 6e 64 20 69 66 20 73  6f 20 61 6d 65 6e 64 65  |and if so amende|
00000ba0  64 20 74 68 65 20 64 69  63 74 69 6f 6e 61 72 79  |d the dictionary|
00000bb0  20 6e 61 6d 65 29 20 79  6f 75 72 20 66 69 6c 65  | name) your file|
00000bc0  20 69 73 20 73 63 61 6e  6e 65 64 20 61 6e 64 0d  | is scanned and.|
00000bd0  61 6e 79 20 77 6f 72 64  73 20 6e 6f 74 20 72 65  |any words not re|
00000be0  63 6f 67 6e 69 73 65 64  20 64 69 73 70 6c 61 79  |cognised display|
00000bf0  65 64 1a 20 6f 6e 1a 20  73 63 72 65 65 6e 2e 1a  |ed. on. screen..|
00000c00  20 49 66 20 74 68 65 20  77 6f 72 64 20 69 73 20  | If the word is |
00000c10  20 63 6f 72 72 65 63 74  6c 79 0d 73 70 65 6c 74  | correctly.spelt|
00000c20  20 61 6e 64 20 79 6f 75  20 77 61 6e 74 20 69 74  | and you want it|
00000c30  20 61 64 64 65 64 20 74  6f 20 74 68 65 1a 20 64  | added to the. d|
00000c40  69 63 74 69 6f 6e 61 72  79 20 70 72 65 73 73 20  |ictionary press |
00000c50  61 20 66 6f 72 20 61 64  64 2c 20 69 66 20 63 6f  |a for add, if co|
00000c60  72 72 65 63 74 0d 62 75  74 20 6e 6f 74 20 74 6f  |rrect.but not to|
00000c70  20 62 65 20 61 64 64 65  64 20 70 72 65 73 73 20  | be added press |
00000c80  69 29 67 6e 6f 72 65 2e  20 49 66 20 74 68 65 1a  |i)gnore. If the.|
00000c90  20 77 6f 72 64 1a 20 69  73 20 69 6e 63 6f 72 72  | word. is incorr|
00000ca0  65 63 74 20 28 6f 72 20  79 6f 75 20 6a 75 73 74  |ect (or you just|
00000cb0  0d 77 61 6e 74 20 74 6f  20 63 68 61 6e 67 65 20  |.want to change |
00000cc0  69 74 29 20 70 72 65 73  73 20 72 20 74 6f 20 72  |it) press r to r|
00000cd0  65 70 6c 61 63 65 2c 20  61 6e 64 20 74 79 70 65  |eplace, and type|
00000ce0  20 69 6e 1a 20 79 6f 75  72 1a 20 6e 65 77 20 77  | in. your. new w|
00000cf0  6f 72 64 2e 20 49 66 20  74 68 65 0d 70 72 6f 67  |ord. If the.prog|
00000d00  72 61 6d 20 20 64 6f 65  73 6e 27 74 20 72 65 63  |ram  doesn't rec|
00000d10  6f 67 6e 69 73 65 20 74  68 65 20 77 6f 72 64 1a  |ognise the word.|
00000d20  20 79 6f 75 1a 20 72 29  65 70 6c 61 63 65 20 69  | you. r)eplace i|
00000d30  74 20 77 69 6c 6c 20 6f  66 66 65 72 20 69 74 20  |t will offer it |
00000d40  74 6f 20 79 6f 75 0d 66  6f 72 20 69 29 67 6e 6f  |to you.for i)gno|
00000d50  72 65 2c 20 72 29 65 70  6c 61 63 65 20 6f 72 20  |re, r)eplace or |
00000d60  61 29 64 64 20 61 67 61  69 6e 2e 20 41 74 1a 20  |a)dd again. At. |
00000d70  74 68 65 1a 20 65 6e 64  1a 20 61 1a 20 6e 65 77  |the. end. a. new|
00000d80  1a 20 66 69 6c 65 20 69  73 20 63 72 65 61 74 65  |. file is create|
00000d90  64 0d 63 61 6c 6c 65 64  20 54 45 58 54 20 77 68  |d.called TEXT wh|
00000da0  69 63 68 20 79 6f 75 20  73 68 6f 75 6c 64 20 72  |ich you should r|
00000db0  65 6e 61 6d 65 20 62 65  66 6f 72 65 20 6e 65 78  |ename before nex|
00000dc0  74 20 75 73 69 6e 67 20  56 49 45 57 43 48 45 43  |t using VIEWCHEC|
00000dd0  4b 2e 0d                                          |K..|
00000dd3
PROGS/VEWCHK/v-chk-doc.m0
PROGS/VEWCHK/v-chk-doc.m1
PROGS/VEWCHK/v-chk-doc.m2
PROGS/VEWCHK/v-chk-doc.m4
PROGS/VEWCHK/v-chk-doc.m5