Home » Archimedes archive » Archimedes World » archimedes_world_volume_15_issue_2_scp.adf » !ARMEdit_ARMEdit » Docs/ARMEDIT

Docs/ARMEDIT

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 » Archimedes archive » Archimedes World » archimedes_world_volume_15_issue_2_scp.adf » !ARMEdit_ARMEdit
Filename: Docs/ARMEDIT
Read OK:
File size: 0DFE bytes
Load address: 0000
Exec address: 0000
File contents
File        : ARMEDIT
Date        : 07-Dec-97
Author      : � A.Thoukydides, 1996, 1997
Description : Description of the PC ARMEDIT command that is part of the
              ARMEdit suite.


INTRODUCTION

The "ARMEDIT" command allows DOS files to be edited using a RISC OS editor.
To use this command it is necessary to load the ARMEdit module before
starting the PC front-end, and to have both the !ARMEdit front-end and a
suitable RISC OS editor running.

The External Data Editing Protocol is used to control the edit. Both !Zap and
!StrongEd support this protocol (see comments below), but unfortunately !Edit
does not.


USAGE

The syntax is:

    ARMEDIT [/?] <file> [<file> [...]]
    ARMEDIT [/?] /L <file> [<line> [<file> [<line> [...]]]]

where

    /?              - Displays some help text.
    /L              - Filenames are followed by line numbers.
    <file>          - Wildcarded name of the files to edit.
    <line>          - Line number to position cursor at.

All files are treated as text files (RISC OS type &FFF) when being edited.


USE WITH ZAP

!Zap uses several techniques for choosing the mode to edit a file in. These
include using the filetype, filename and the contents of the file. Due to the
operation of the External Data Editing Protocol, only the file leaf name is
available. Hence, to enable selection of editing modes the following lines
should be placed at the start of the !Zap.Keys file:

&500	&FFF	\#\*/c			+C
&500	&FFF	\#\*/cc			+C
&500	&FFF	\#\*/c++		+C
&500	&FFF	\#\*/h			+C
&500	&FFF	\#\*/asm		+Assembler

Other mappings can be added in a similar fashion. Files that do not match any
of the patterns will be placed in the configured default mode (usually Text).

Note that !Zap will not automatically recognise DOS files and perform line end
mappings. This is because with the External Data Editing Protocol a blank
buffer is initially created, with the file contents being added later; it is
not possible to recognise the file type from the initial blank buffer.


USE WITH STRONGED

Some versions of !StrongEd do not support The External Data Editing Protocol
correctly. If you experience problems with the ARMEDIT utility still polling
edits that have been ended, then try upgrading to the latest version of
!StrongEd.


OTHER POINTS TO NOTE

If a suitable editor is not running, then the command will exit without
giving an error message - no attempt is made to automatically load a suitable
editor.

Filenames may contain standard DOS wildcards, i.e. "?" for single characters,
and "*" for multiple characters. Files are matched using the same rules as
used by other DOS commands.

The cursor position is selected by counting new-line (ASCII code 10)
characters. If the editor changes the line end character sequences then the
cursor may be positioned on the wrong line.


THINGS TO DO

The following are changes that may be made to the ARMEDIT command sometime in
the future.

    Load a configured text editor if external edit messages returned.


VERSION HISTORY

0.00 (10-Sep-96)    Original development version.

0.01 (12-Sep-96)    Current status and operation is displayed.
                    Better error handling and recovery.
                    Multiple files can be simultaneously edited.
                    Initial cursor position may be specified.

0.02 (14-Oct-96)    Rewrite after source code lost when PC partition corrupted.

0.03 (05-Feb-97)    Temporary files are deleted before quitting.

1.03 (21-Feb-97)    First official release version.

1.04 (07-Dec-97)    Version number updated to match the module.
00000000  46 69 6c 65 20 20 20 20  20 20 20 20 3a 20 41 52  |File        : AR|
00000010  4d 45 44 49 54 0a 44 61  74 65 20 20 20 20 20 20  |MEDIT.Date      |
00000020  20 20 3a 20 30 37 2d 44  65 63 2d 39 37 0a 41 75  |  : 07-Dec-97.Au|
00000030  74 68 6f 72 20 20 20 20  20 20 3a 20 a9 20 41 2e  |thor      : . A.|
00000040  54 68 6f 75 6b 79 64 69  64 65 73 2c 20 31 39 39  |Thoukydides, 199|
00000050  36 2c 20 31 39 39 37 0a  44 65 73 63 72 69 70 74  |6, 1997.Descript|
00000060  69 6f 6e 20 3a 20 44 65  73 63 72 69 70 74 69 6f  |ion : Descriptio|
00000070  6e 20 6f 66 20 74 68 65  20 50 43 20 41 52 4d 45  |n of the PC ARME|
00000080  44 49 54 20 63 6f 6d 6d  61 6e 64 20 74 68 61 74  |DIT command that|
00000090  20 69 73 20 70 61 72 74  20 6f 66 20 74 68 65 0a  | is part of the.|
000000a0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 41 52  |              AR|
000000b0  4d 45 64 69 74 20 73 75  69 74 65 2e 0a 0a 0a 49  |MEdit suite....I|
000000c0  4e 54 52 4f 44 55 43 54  49 4f 4e 0a 0a 54 68 65  |NTRODUCTION..The|
000000d0  20 22 41 52 4d 45 44 49  54 22 20 63 6f 6d 6d 61  | "ARMEDIT" comma|
000000e0  6e 64 20 61 6c 6c 6f 77  73 20 44 4f 53 20 66 69  |nd allows DOS fi|
000000f0  6c 65 73 20 74 6f 20 62  65 20 65 64 69 74 65 64  |les to be edited|
00000100  20 75 73 69 6e 67 20 61  20 52 49 53 43 20 4f 53  | using a RISC OS|
00000110  20 65 64 69 74 6f 72 2e  0a 54 6f 20 75 73 65 20  | editor..To use |
00000120  74 68 69 73 20 63 6f 6d  6d 61 6e 64 20 69 74 20  |this command it |
00000130  69 73 20 6e 65 63 65 73  73 61 72 79 20 74 6f 20  |is necessary to |
00000140  6c 6f 61 64 20 74 68 65  20 41 52 4d 45 64 69 74  |load the ARMEdit|
00000150  20 6d 6f 64 75 6c 65 20  62 65 66 6f 72 65 0a 73  | module before.s|
00000160  74 61 72 74 69 6e 67 20  74 68 65 20 50 43 20 66  |tarting the PC f|
00000170  72 6f 6e 74 2d 65 6e 64  2c 20 61 6e 64 20 74 6f  |ront-end, and to|
00000180  20 68 61 76 65 20 62 6f  74 68 20 74 68 65 20 21  | have both the !|
00000190  41 52 4d 45 64 69 74 20  66 72 6f 6e 74 2d 65 6e  |ARMEdit front-en|
000001a0  64 20 61 6e 64 20 61 0a  73 75 69 74 61 62 6c 65  |d and a.suitable|
000001b0  20 52 49 53 43 20 4f 53  20 65 64 69 74 6f 72 20  | RISC OS editor |
000001c0  72 75 6e 6e 69 6e 67 2e  0a 0a 54 68 65 20 45 78  |running...The Ex|
000001d0  74 65 72 6e 61 6c 20 44  61 74 61 20 45 64 69 74  |ternal Data Edit|
000001e0  69 6e 67 20 50 72 6f 74  6f 63 6f 6c 20 69 73 20  |ing Protocol is |
000001f0  75 73 65 64 20 74 6f 20  63 6f 6e 74 72 6f 6c 20  |used to control |
00000200  74 68 65 20 65 64 69 74  2e 20 42 6f 74 68 20 21  |the edit. Both !|
00000210  5a 61 70 20 61 6e 64 0a  21 53 74 72 6f 6e 67 45  |Zap and.!StrongE|
00000220  64 20 73 75 70 70 6f 72  74 20 74 68 69 73 20 70  |d support this p|
00000230  72 6f 74 6f 63 6f 6c 20  28 73 65 65 20 63 6f 6d  |rotocol (see com|
00000240  6d 65 6e 74 73 20 62 65  6c 6f 77 29 2c 20 62 75  |ments below), bu|
00000250  74 20 75 6e 66 6f 72 74  75 6e 61 74 65 6c 79 20  |t unfortunately |
00000260  21 45 64 69 74 0a 64 6f  65 73 20 6e 6f 74 2e 0a  |!Edit.does not..|
00000270  0a 0a 55 53 41 47 45 0a  0a 54 68 65 20 73 79 6e  |..USAGE..The syn|
00000280  74 61 78 20 69 73 3a 0a  0a 20 20 20 20 41 52 4d  |tax is:..    ARM|
00000290  45 44 49 54 20 5b 2f 3f  5d 20 3c 66 69 6c 65 3e  |EDIT [/?] <file>|
000002a0  20 5b 3c 66 69 6c 65 3e  20 5b 2e 2e 2e 5d 5d 0a  | [<file> [...]].|
000002b0  20 20 20 20 41 52 4d 45  44 49 54 20 5b 2f 3f 5d  |    ARMEDIT [/?]|
000002c0  20 2f 4c 20 3c 66 69 6c  65 3e 20 5b 3c 6c 69 6e  | /L <file> [<lin|
000002d0  65 3e 20 5b 3c 66 69 6c  65 3e 20 5b 3c 6c 69 6e  |e> [<file> [<lin|
000002e0  65 3e 20 5b 2e 2e 2e 5d  5d 5d 5d 0a 0a 77 68 65  |e> [...]]]]..whe|
000002f0  72 65 0a 0a 20 20 20 20  2f 3f 20 20 20 20 20 20  |re..    /?      |
00000300  20 20 20 20 20 20 20 20  2d 20 44 69 73 70 6c 61  |        - Displa|
00000310  79 73 20 73 6f 6d 65 20  68 65 6c 70 20 74 65 78  |ys some help tex|
00000320  74 2e 0a 20 20 20 20 2f  4c 20 20 20 20 20 20 20  |t..    /L       |
00000330  20 20 20 20 20 20 20 2d  20 46 69 6c 65 6e 61 6d  |       - Filenam|
00000340  65 73 20 61 72 65 20 66  6f 6c 6c 6f 77 65 64 20  |es are followed |
00000350  62 79 20 6c 69 6e 65 20  6e 75 6d 62 65 72 73 2e  |by line numbers.|
00000360  0a 20 20 20 20 3c 66 69  6c 65 3e 20 20 20 20 20  |.    <file>     |
00000370  20 20 20 20 20 2d 20 57  69 6c 64 63 61 72 64 65  |     - Wildcarde|
00000380  64 20 6e 61 6d 65 20 6f  66 20 74 68 65 20 66 69  |d name of the fi|
00000390  6c 65 73 20 74 6f 20 65  64 69 74 2e 0a 20 20 20  |les to edit..   |
000003a0  20 3c 6c 69 6e 65 3e 20  20 20 20 20 20 20 20 20  | <line>         |
000003b0  20 2d 20 4c 69 6e 65 20  6e 75 6d 62 65 72 20 74  | - Line number t|
000003c0  6f 20 70 6f 73 69 74 69  6f 6e 20 63 75 72 73 6f  |o position curso|
000003d0  72 20 61 74 2e 0a 0a 41  6c 6c 20 66 69 6c 65 73  |r at...All files|
000003e0  20 61 72 65 20 74 72 65  61 74 65 64 20 61 73 20  | are treated as |
000003f0  74 65 78 74 20 66 69 6c  65 73 20 28 52 49 53 43  |text files (RISC|
00000400  20 4f 53 20 74 79 70 65  20 26 46 46 46 29 20 77  | OS type &FFF) w|
00000410  68 65 6e 20 62 65 69 6e  67 20 65 64 69 74 65 64  |hen being edited|
00000420  2e 0a 0a 0a 55 53 45 20  57 49 54 48 20 5a 41 50  |....USE WITH ZAP|
00000430  0a 0a 21 5a 61 70 20 75  73 65 73 20 73 65 76 65  |..!Zap uses seve|
00000440  72 61 6c 20 74 65 63 68  6e 69 71 75 65 73 20 66  |ral techniques f|
00000450  6f 72 20 63 68 6f 6f 73  69 6e 67 20 74 68 65 20  |or choosing the |
00000460  6d 6f 64 65 20 74 6f 20  65 64 69 74 20 61 20 66  |mode to edit a f|
00000470  69 6c 65 20 69 6e 2e 20  54 68 65 73 65 0a 69 6e  |ile in. These.in|
00000480  63 6c 75 64 65 20 75 73  69 6e 67 20 74 68 65 20  |clude using the |
00000490  66 69 6c 65 74 79 70 65  2c 20 66 69 6c 65 6e 61  |filetype, filena|
000004a0  6d 65 20 61 6e 64 20 74  68 65 20 63 6f 6e 74 65  |me and the conte|
000004b0  6e 74 73 20 6f 66 20 74  68 65 20 66 69 6c 65 2e  |nts of the file.|
000004c0  20 44 75 65 20 74 6f 20  74 68 65 0a 6f 70 65 72  | Due to the.oper|
000004d0  61 74 69 6f 6e 20 6f 66  20 74 68 65 20 45 78 74  |ation of the Ext|
000004e0  65 72 6e 61 6c 20 44 61  74 61 20 45 64 69 74 69  |ernal Data Editi|
000004f0  6e 67 20 50 72 6f 74 6f  63 6f 6c 2c 20 6f 6e 6c  |ng Protocol, onl|
00000500  79 20 74 68 65 20 66 69  6c 65 20 6c 65 61 66 20  |y the file leaf |
00000510  6e 61 6d 65 20 69 73 0a  61 76 61 69 6c 61 62 6c  |name is.availabl|
00000520  65 2e 20 48 65 6e 63 65  2c 20 74 6f 20 65 6e 61  |e. Hence, to ena|
00000530  62 6c 65 20 73 65 6c 65  63 74 69 6f 6e 20 6f 66  |ble selection of|
00000540  20 65 64 69 74 69 6e 67  20 6d 6f 64 65 73 20 74  | editing modes t|
00000550  68 65 20 66 6f 6c 6c 6f  77 69 6e 67 20 6c 69 6e  |he following lin|
00000560  65 73 0a 73 68 6f 75 6c  64 20 62 65 20 70 6c 61  |es.should be pla|
00000570  63 65 64 20 61 74 20 74  68 65 20 73 74 61 72 74  |ced at the start|
00000580  20 6f 66 20 74 68 65 20  21 5a 61 70 2e 4b 65 79  | of the !Zap.Key|
00000590  73 20 66 69 6c 65 3a 0a  0a 26 35 30 30 09 26 46  |s file:..&500.&F|
000005a0  46 46 09 5c 23 5c 2a 2f  63 09 09 09 2b 43 0a 26  |FF.\#\*/c...+C.&|
000005b0  35 30 30 09 26 46 46 46  09 5c 23 5c 2a 2f 63 63  |500.&FFF.\#\*/cc|
000005c0  09 09 09 2b 43 0a 26 35  30 30 09 26 46 46 46 09  |...+C.&500.&FFF.|
000005d0  5c 23 5c 2a 2f 63 2b 2b  09 09 2b 43 0a 26 35 30  |\#\*/c++..+C.&50|
000005e0  30 09 26 46 46 46 09 5c  23 5c 2a 2f 68 09 09 09  |0.&FFF.\#\*/h...|
000005f0  2b 43 0a 26 35 30 30 09  26 46 46 46 09 5c 23 5c  |+C.&500.&FFF.\#\|
00000600  2a 2f 61 73 6d 09 09 2b  41 73 73 65 6d 62 6c 65  |*/asm..+Assemble|
00000610  72 0a 0a 4f 74 68 65 72  20 6d 61 70 70 69 6e 67  |r..Other mapping|
00000620  73 20 63 61 6e 20 62 65  20 61 64 64 65 64 20 69  |s can be added i|
00000630  6e 20 61 20 73 69 6d 69  6c 61 72 20 66 61 73 68  |n a similar fash|
00000640  69 6f 6e 2e 20 46 69 6c  65 73 20 74 68 61 74 20  |ion. Files that |
00000650  64 6f 20 6e 6f 74 20 6d  61 74 63 68 20 61 6e 79  |do not match any|
00000660  0a 6f 66 20 74 68 65 20  70 61 74 74 65 72 6e 73  |.of the patterns|
00000670  20 77 69 6c 6c 20 62 65  20 70 6c 61 63 65 64 20  | will be placed |
00000680  69 6e 20 74 68 65 20 63  6f 6e 66 69 67 75 72 65  |in the configure|
00000690  64 20 64 65 66 61 75 6c  74 20 6d 6f 64 65 20 28  |d default mode (|
000006a0  75 73 75 61 6c 6c 79 20  54 65 78 74 29 2e 0a 0a  |usually Text)...|
000006b0  4e 6f 74 65 20 74 68 61  74 20 21 5a 61 70 20 77  |Note that !Zap w|
000006c0  69 6c 6c 20 6e 6f 74 20  61 75 74 6f 6d 61 74 69  |ill not automati|
000006d0  63 61 6c 6c 79 20 72 65  63 6f 67 6e 69 73 65 20  |cally recognise |
000006e0  44 4f 53 20 66 69 6c 65  73 20 61 6e 64 20 70 65  |DOS files and pe|
000006f0  72 66 6f 72 6d 20 6c 69  6e 65 20 65 6e 64 0a 6d  |rform line end.m|
00000700  61 70 70 69 6e 67 73 2e  20 54 68 69 73 20 69 73  |appings. This is|
00000710  20 62 65 63 61 75 73 65  20 77 69 74 68 20 74 68  | because with th|
00000720  65 20 45 78 74 65 72 6e  61 6c 20 44 61 74 61 20  |e External Data |
00000730  45 64 69 74 69 6e 67 20  50 72 6f 74 6f 63 6f 6c  |Editing Protocol|
00000740  20 61 20 62 6c 61 6e 6b  0a 62 75 66 66 65 72 20  | a blank.buffer |
00000750  69 73 20 69 6e 69 74 69  61 6c 6c 79 20 63 72 65  |is initially cre|
00000760  61 74 65 64 2c 20 77 69  74 68 20 74 68 65 20 66  |ated, with the f|
00000770  69 6c 65 20 63 6f 6e 74  65 6e 74 73 20 62 65 69  |ile contents bei|
00000780  6e 67 20 61 64 64 65 64  20 6c 61 74 65 72 3b 20  |ng added later; |
00000790  69 74 20 69 73 0a 6e 6f  74 20 70 6f 73 73 69 62  |it is.not possib|
000007a0  6c 65 20 74 6f 20 72 65  63 6f 67 6e 69 73 65 20  |le to recognise |
000007b0  74 68 65 20 66 69 6c 65  20 74 79 70 65 20 66 72  |the file type fr|
000007c0  6f 6d 20 74 68 65 20 69  6e 69 74 69 61 6c 20 62  |om the initial b|
000007d0  6c 61 6e 6b 20 62 75 66  66 65 72 2e 0a 0a 0a 55  |lank buffer....U|
000007e0  53 45 20 57 49 54 48 20  53 54 52 4f 4e 47 45 44  |SE WITH STRONGED|
000007f0  0a 0a 53 6f 6d 65 20 76  65 72 73 69 6f 6e 73 20  |..Some versions |
00000800  6f 66 20 21 53 74 72 6f  6e 67 45 64 20 64 6f 20  |of !StrongEd do |
00000810  6e 6f 74 20 73 75 70 70  6f 72 74 20 54 68 65 20  |not support The |
00000820  45 78 74 65 72 6e 61 6c  20 44 61 74 61 20 45 64  |External Data Ed|
00000830  69 74 69 6e 67 20 50 72  6f 74 6f 63 6f 6c 0a 63  |iting Protocol.c|
00000840  6f 72 72 65 63 74 6c 79  2e 20 49 66 20 79 6f 75  |orrectly. If you|
00000850  20 65 78 70 65 72 69 65  6e 63 65 20 70 72 6f 62  | experience prob|
00000860  6c 65 6d 73 20 77 69 74  68 20 74 68 65 20 41 52  |lems with the AR|
00000870  4d 45 44 49 54 20 75 74  69 6c 69 74 79 20 73 74  |MEDIT utility st|
00000880  69 6c 6c 20 70 6f 6c 6c  69 6e 67 0a 65 64 69 74  |ill polling.edit|
00000890  73 20 74 68 61 74 20 68  61 76 65 20 62 65 65 6e  |s that have been|
000008a0  20 65 6e 64 65 64 2c 20  74 68 65 6e 20 74 72 79  | ended, then try|
000008b0  20 75 70 67 72 61 64 69  6e 67 20 74 6f 20 74 68  | upgrading to th|
000008c0  65 20 6c 61 74 65 73 74  20 76 65 72 73 69 6f 6e  |e latest version|
000008d0  20 6f 66 0a 21 53 74 72  6f 6e 67 45 64 2e 0a 0a  | of.!StrongEd...|
000008e0  0a 4f 54 48 45 52 20 50  4f 49 4e 54 53 20 54 4f  |.OTHER POINTS TO|
000008f0  20 4e 4f 54 45 0a 0a 49  66 20 61 20 73 75 69 74  | NOTE..If a suit|
00000900  61 62 6c 65 20 65 64 69  74 6f 72 20 69 73 20 6e  |able editor is n|
00000910  6f 74 20 72 75 6e 6e 69  6e 67 2c 20 74 68 65 6e  |ot running, then|
00000920  20 74 68 65 20 63 6f 6d  6d 61 6e 64 20 77 69 6c  | the command wil|
00000930  6c 20 65 78 69 74 20 77  69 74 68 6f 75 74 0a 67  |l exit without.g|
00000940  69 76 69 6e 67 20 61 6e  20 65 72 72 6f 72 20 6d  |iving an error m|
00000950  65 73 73 61 67 65 20 2d  20 6e 6f 20 61 74 74 65  |essage - no atte|
00000960  6d 70 74 20 69 73 20 6d  61 64 65 20 74 6f 20 61  |mpt is made to a|
00000970  75 74 6f 6d 61 74 69 63  61 6c 6c 79 20 6c 6f 61  |utomatically loa|
00000980  64 20 61 20 73 75 69 74  61 62 6c 65 0a 65 64 69  |d a suitable.edi|
00000990  74 6f 72 2e 0a 0a 46 69  6c 65 6e 61 6d 65 73 20  |tor...Filenames |
000009a0  6d 61 79 20 63 6f 6e 74  61 69 6e 20 73 74 61 6e  |may contain stan|
000009b0  64 61 72 64 20 44 4f 53  20 77 69 6c 64 63 61 72  |dard DOS wildcar|
000009c0  64 73 2c 20 69 2e 65 2e  20 22 3f 22 20 66 6f 72  |ds, i.e. "?" for|
000009d0  20 73 69 6e 67 6c 65 20  63 68 61 72 61 63 74 65  | single characte|
000009e0  72 73 2c 0a 61 6e 64 20  22 2a 22 20 66 6f 72 20  |rs,.and "*" for |
000009f0  6d 75 6c 74 69 70 6c 65  20 63 68 61 72 61 63 74  |multiple charact|
00000a00  65 72 73 2e 20 46 69 6c  65 73 20 61 72 65 20 6d  |ers. Files are m|
00000a10  61 74 63 68 65 64 20 75  73 69 6e 67 20 74 68 65  |atched using the|
00000a20  20 73 61 6d 65 20 72 75  6c 65 73 20 61 73 0a 75  | same rules as.u|
00000a30  73 65 64 20 62 79 20 6f  74 68 65 72 20 44 4f 53  |sed by other DOS|
00000a40  20 63 6f 6d 6d 61 6e 64  73 2e 0a 0a 54 68 65 20  | commands...The |
00000a50  63 75 72 73 6f 72 20 70  6f 73 69 74 69 6f 6e 20  |cursor position |
00000a60  69 73 20 73 65 6c 65 63  74 65 64 20 62 79 20 63  |is selected by c|
00000a70  6f 75 6e 74 69 6e 67 20  6e 65 77 2d 6c 69 6e 65  |ounting new-line|
00000a80  20 28 41 53 43 49 49 20  63 6f 64 65 20 31 30 29  | (ASCII code 10)|
00000a90  0a 63 68 61 72 61 63 74  65 72 73 2e 20 49 66 20  |.characters. If |
00000aa0  74 68 65 20 65 64 69 74  6f 72 20 63 68 61 6e 67  |the editor chang|
00000ab0  65 73 20 74 68 65 20 6c  69 6e 65 20 65 6e 64 20  |es the line end |
00000ac0  63 68 61 72 61 63 74 65  72 20 73 65 71 75 65 6e  |character sequen|
00000ad0  63 65 73 20 74 68 65 6e  20 74 68 65 0a 63 75 72  |ces then the.cur|
00000ae0  73 6f 72 20 6d 61 79 20  62 65 20 70 6f 73 69 74  |sor may be posit|
00000af0  69 6f 6e 65 64 20 6f 6e  20 74 68 65 20 77 72 6f  |ioned on the wro|
00000b00  6e 67 20 6c 69 6e 65 2e  0a 0a 0a 54 48 49 4e 47  |ng line....THING|
00000b10  53 20 54 4f 20 44 4f 0a  0a 54 68 65 20 66 6f 6c  |S TO DO..The fol|
00000b20  6c 6f 77 69 6e 67 20 61  72 65 20 63 68 61 6e 67  |lowing are chang|
00000b30  65 73 20 74 68 61 74 20  6d 61 79 20 62 65 20 6d  |es that may be m|
00000b40  61 64 65 20 74 6f 20 74  68 65 20 41 52 4d 45 44  |ade to the ARMED|
00000b50  49 54 20 63 6f 6d 6d 61  6e 64 20 73 6f 6d 65 74  |IT command somet|
00000b60  69 6d 65 20 69 6e 0a 74  68 65 20 66 75 74 75 72  |ime in.the futur|
00000b70  65 2e 0a 0a 20 20 20 20  4c 6f 61 64 20 61 20 63  |e...    Load a c|
00000b80  6f 6e 66 69 67 75 72 65  64 20 74 65 78 74 20 65  |onfigured text e|
00000b90  64 69 74 6f 72 20 69 66  20 65 78 74 65 72 6e 61  |ditor if externa|
00000ba0  6c 20 65 64 69 74 20 6d  65 73 73 61 67 65 73 20  |l edit messages |
00000bb0  72 65 74 75 72 6e 65 64  2e 0a 0a 0a 56 45 52 53  |returned....VERS|
00000bc0  49 4f 4e 20 48 49 53 54  4f 52 59 0a 0a 30 2e 30  |ION HISTORY..0.0|
00000bd0  30 20 28 31 30 2d 53 65  70 2d 39 36 29 20 20 20  |0 (10-Sep-96)   |
00000be0  20 4f 72 69 67 69 6e 61  6c 20 64 65 76 65 6c 6f  | Original develo|
00000bf0  70 6d 65 6e 74 20 76 65  72 73 69 6f 6e 2e 0a 0a  |pment version...|
00000c00  30 2e 30 31 20 28 31 32  2d 53 65 70 2d 39 36 29  |0.01 (12-Sep-96)|
00000c10  20 20 20 20 43 75 72 72  65 6e 74 20 73 74 61 74  |    Current stat|
00000c20  75 73 20 61 6e 64 20 6f  70 65 72 61 74 69 6f 6e  |us and operation|
00000c30  20 69 73 20 64 69 73 70  6c 61 79 65 64 2e 0a 20  | is displayed.. |
00000c40  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
00000c50  20 20 20 42 65 74 74 65  72 20 65 72 72 6f 72 20  |   Better error |
00000c60  68 61 6e 64 6c 69 6e 67  20 61 6e 64 20 72 65 63  |handling and rec|
00000c70  6f 76 65 72 79 2e 0a 20  20 20 20 20 20 20 20 20  |overy..         |
00000c80  20 20 20 20 20 20 20 20  20 20 20 4d 75 6c 74 69  |           Multi|
00000c90  70 6c 65 20 66 69 6c 65  73 20 63 61 6e 20 62 65  |ple files can be|
00000ca0  20 73 69 6d 75 6c 74 61  6e 65 6f 75 73 6c 79 20  | simultaneously |
00000cb0  65 64 69 74 65 64 2e 0a  20 20 20 20 20 20 20 20  |edited..        |
00000cc0  20 20 20 20 20 20 20 20  20 20 20 20 49 6e 69 74  |            Init|
00000cd0  69 61 6c 20 63 75 72 73  6f 72 20 70 6f 73 69 74  |ial cursor posit|
00000ce0  69 6f 6e 20 6d 61 79 20  62 65 20 73 70 65 63 69  |ion may be speci|
00000cf0  66 69 65 64 2e 0a 0a 30  2e 30 32 20 28 31 34 2d  |fied...0.02 (14-|
00000d00  4f 63 74 2d 39 36 29 20  20 20 20 52 65 77 72 69  |Oct-96)    Rewri|
00000d10  74 65 20 61 66 74 65 72  20 73 6f 75 72 63 65 20  |te after source |
00000d20  63 6f 64 65 20 6c 6f 73  74 20 77 68 65 6e 20 50  |code lost when P|
00000d30  43 20 70 61 72 74 69 74  69 6f 6e 20 63 6f 72 72  |C partition corr|
00000d40  75 70 74 65 64 2e 0a 0a  30 2e 30 33 20 28 30 35  |upted...0.03 (05|
00000d50  2d 46 65 62 2d 39 37 29  20 20 20 20 54 65 6d 70  |-Feb-97)    Temp|
00000d60  6f 72 61 72 79 20 66 69  6c 65 73 20 61 72 65 20  |orary files are |
00000d70  64 65 6c 65 74 65 64 20  62 65 66 6f 72 65 20 71  |deleted before q|
00000d80  75 69 74 74 69 6e 67 2e  0a 0a 31 2e 30 33 20 28  |uitting...1.03 (|
00000d90  32 31 2d 46 65 62 2d 39  37 29 20 20 20 20 46 69  |21-Feb-97)    Fi|
00000da0  72 73 74 20 6f 66 66 69  63 69 61 6c 20 72 65 6c  |rst official rel|
00000db0  65 61 73 65 20 76 65 72  73 69 6f 6e 2e 0a 0a 31  |ease version...1|
00000dc0  2e 30 34 20 28 30 37 2d  44 65 63 2d 39 37 29 20  |.04 (07-Dec-97) |
00000dd0  20 20 20 56 65 72 73 69  6f 6e 20 6e 75 6d 62 65  |   Version numbe|
00000de0  72 20 75 70 64 61 74 65  64 20 74 6f 20 6d 61 74  |r updated to mat|
00000df0  63 68 20 74 68 65 20 6d  6f 64 75 6c 65 2e        |ch the module.|
00000dfe