Home » Archimedes archive » Archimedes World » AW-1994-06-Disc2.adf » Disk2Jun94 » !AWJune94/Goodies/Zap/!Zap/Docs/E-Flags

!AWJune94/Goodies/Zap/!Zap/Docs/E-Flags

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 » AW-1994-06-Disc2.adf » Disk2Jun94
Filename: !AWJune94/Goodies/Zap/!Zap/Docs/E-Flags
Read OK:
File size: 0DAB bytes
Load address: 0000
Exec address: 0000
File contents
*************************************************************************
* >E-Flags	Documents the '*_flags' and '*_format' words.		*
*************************************************************************

This file documents the bits of the flag/format words. To be specific these
are the word variables named opt_flags, f_flags, w_flags and opt_format,
w_format. The opt_* variables give the default values to use when creating
new file or window blocks and these are saved in the !Config file. See the
file E-Vars on how to change them. The f_* and w_* variable offsets are
documented in E-File and E-Windows.

After each bit, I will write an 'o','f' or 'w' depending on whether that bit
has meaning in the opt_flags, f_flags or w_flags words.

The flags word:

b0	of	Set if undo supported for this file.
b1	ow	0=insert mode 1=overwrite mode
b2	o	0=files auto deleted 1=no auto delete of files
b3	f	Set if file altered
b4	of	Set if file permanently read only (big R in title)
b5	ow	Set if in hex entry mode for this window
b6	ow	Set if auto width option active
b7	f	Indicates file not in buffer list - out of date - do not use
b8	of	Set if file temporarily read only (small r in title)
b9 & 10	ow	Tab mode 00=Unix 01=!Edit 10=coltab mode 11=undefined
b11	ow	Set means insert tabs as spaces.
b12	o	Set if search case sensitive.
b13	ow	Set if wordwrap mode on.
b14	f	Set to unlink input position from input cursor.
b15	o	Set for sideways printing in 'fancy print'.
b16	o	Set for don't add title in 'fancy print'.
b17	ow	Redraw mode low bit - see later
b18	o	Set for don't add title in 'quick print'.
b19	ow	Set for don't use search macros.
b20	ow	Redraw mode medium bit - see later
b21	ow	Redraw mode high bit - see later
b22	o	Set if selections should automatically vanish.
b23	o	Minibuffer permanent if set (popup otherwise).
b24	f	Set to prevent input cursor being drawn after a text change.
b25	o	Set if gain input calls should be ignored - internal use
b26	ow	Set if linewrap mode on.
b27		Reserved
b28		Reserved
b29		Reserved
b30	w	Internal use : Window changed during scrolling.
b31	w	Internal use : Window needs to be altered after mode change.

The redraw mode bits can be described by the masks:
	&000000	1 dpp system font
	&020000 system font via vdu
	&100000 scaled system font
	&120000 font via vdu
	&200000 fast font redraw
	&220000 double height system font
	&300000 reserved
	&320000 reserved

Now the 'format' word. This word is very important as it contains the mode
number of the window. You should use Zap_NewMode to change it. All bits are
valid in opt_format and w_format. The opt_format mode is the options mode
mentioned in the 'Options.Mode' menu.

b0-b7	Mode number (0-255)
b8	0=no line numbers 1=show line numbers
b9	0=line numbers are file offsets 1=line numbers are lines (see b11)
b10	0=line numbers given in decimal 1=line numbers given in hex
b11	0=line numbers are physical 1=line numbers are logical
b12-b13 Tab display format 00=none 01=spaces 10= '->   ' 11='----->'
b14	0=stream edit paradigm 1=line edit paradigm
b15	Set for non standard edit mode
b16	Set for auto indent mode
b17	Set for big endian mode
b18-b30 reserved
b31	Internal use : Set to force default (options) mode on loading a file

People writing modes should note that it is their responsibility to save the
current mode options/restore the options on a e_end or e_start call.  Use the
call Zap_RestoreModeWord on your e_start call and Zap_SaveModeWord on your
e_end call to accomplish this.
00000000  2a 2a 2a 2a 2a 2a 2a 2a  2a 2a 2a 2a 2a 2a 2a 2a  |****************|
*
00000040  2a 2a 2a 2a 2a 2a 2a 2a  2a 0a 2a 20 3e 45 2d 46  |*********.* >E-F|
00000050  6c 61 67 73 09 44 6f 63  75 6d 65 6e 74 73 20 74  |lags.Documents t|
00000060  68 65 20 27 2a 5f 66 6c  61 67 73 27 20 61 6e 64  |he '*_flags' and|
00000070  20 27 2a 5f 66 6f 72 6d  61 74 27 20 77 6f 72 64  | '*_format' word|
00000080  73 2e 09 09 2a 0a 2a 2a  2a 2a 2a 2a 2a 2a 2a 2a  |s...*.**********|
00000090  2a 2a 2a 2a 2a 2a 2a 2a  2a 2a 2a 2a 2a 2a 2a 2a  |****************|
*
000000c0  2a 2a 2a 2a 2a 2a 2a 2a  2a 2a 2a 2a 2a 2a 2a 0a  |***************.|
000000d0  0a 54 68 69 73 20 66 69  6c 65 20 64 6f 63 75 6d  |.This file docum|
000000e0  65 6e 74 73 20 74 68 65  20 62 69 74 73 20 6f 66  |ents the bits of|
000000f0  20 74 68 65 20 66 6c 61  67 2f 66 6f 72 6d 61 74  | the flag/format|
00000100  20 77 6f 72 64 73 2e 20  54 6f 20 62 65 20 73 70  | words. To be sp|
00000110  65 63 69 66 69 63 20 74  68 65 73 65 0a 61 72 65  |ecific these.are|
00000120  20 74 68 65 20 77 6f 72  64 20 76 61 72 69 61 62  | the word variab|
00000130  6c 65 73 20 6e 61 6d 65  64 20 6f 70 74 5f 66 6c  |les named opt_fl|
00000140  61 67 73 2c 20 66 5f 66  6c 61 67 73 2c 20 77 5f  |ags, f_flags, w_|
00000150  66 6c 61 67 73 20 61 6e  64 20 6f 70 74 5f 66 6f  |flags and opt_fo|
00000160  72 6d 61 74 2c 0a 77 5f  66 6f 72 6d 61 74 2e 20  |rmat,.w_format. |
00000170  54 68 65 20 6f 70 74 5f  2a 20 76 61 72 69 61 62  |The opt_* variab|
00000180  6c 65 73 20 67 69 76 65  20 74 68 65 20 64 65 66  |les give the def|
00000190  61 75 6c 74 20 76 61 6c  75 65 73 20 74 6f 20 75  |ault values to u|
000001a0  73 65 20 77 68 65 6e 20  63 72 65 61 74 69 6e 67  |se when creating|
000001b0  0a 6e 65 77 20 66 69 6c  65 20 6f 72 20 77 69 6e  |.new file or win|
000001c0  64 6f 77 20 62 6c 6f 63  6b 73 20 61 6e 64 20 74  |dow blocks and t|
000001d0  68 65 73 65 20 61 72 65  20 73 61 76 65 64 20 69  |hese are saved i|
000001e0  6e 20 74 68 65 20 21 43  6f 6e 66 69 67 20 66 69  |n the !Config fi|
000001f0  6c 65 2e 20 53 65 65 20  74 68 65 0a 66 69 6c 65  |le. See the.file|
00000200  20 45 2d 56 61 72 73 20  6f 6e 20 68 6f 77 20 74  | E-Vars on how t|
00000210  6f 20 63 68 61 6e 67 65  20 74 68 65 6d 2e 20 54  |o change them. T|
00000220  68 65 20 66 5f 2a 20 61  6e 64 20 77 5f 2a 20 76  |he f_* and w_* v|
00000230  61 72 69 61 62 6c 65 20  6f 66 66 73 65 74 73 20  |ariable offsets |
00000240  61 72 65 0a 64 6f 63 75  6d 65 6e 74 65 64 20 69  |are.documented i|
00000250  6e 20 45 2d 46 69 6c 65  20 61 6e 64 20 45 2d 57  |n E-File and E-W|
00000260  69 6e 64 6f 77 73 2e 0a  0a 41 66 74 65 72 20 65  |indows...After e|
00000270  61 63 68 20 62 69 74 2c  20 49 20 77 69 6c 6c 20  |ach bit, I will |
00000280  77 72 69 74 65 20 61 6e  20 27 6f 27 2c 27 66 27  |write an 'o','f'|
00000290  20 6f 72 20 27 77 27 20  64 65 70 65 6e 64 69 6e  | or 'w' dependin|
000002a0  67 20 6f 6e 20 77 68 65  74 68 65 72 20 74 68 61  |g on whether tha|
000002b0  74 20 62 69 74 0a 68 61  73 20 6d 65 61 6e 69 6e  |t bit.has meanin|
000002c0  67 20 69 6e 20 74 68 65  20 6f 70 74 5f 66 6c 61  |g in the opt_fla|
000002d0  67 73 2c 20 66 5f 66 6c  61 67 73 20 6f 72 20 77  |gs, f_flags or w|
000002e0  5f 66 6c 61 67 73 20 77  6f 72 64 73 2e 0a 0a 54  |_flags words...T|
000002f0  68 65 20 66 6c 61 67 73  20 77 6f 72 64 3a 0a 0a  |he flags word:..|
00000300  62 30 09 6f 66 09 53 65  74 20 69 66 20 75 6e 64  |b0.of.Set if und|
00000310  6f 20 73 75 70 70 6f 72  74 65 64 20 66 6f 72 20  |o supported for |
00000320  74 68 69 73 20 66 69 6c  65 2e 0a 62 31 09 6f 77  |this file..b1.ow|
00000330  09 30 3d 69 6e 73 65 72  74 20 6d 6f 64 65 20 31  |.0=insert mode 1|
00000340  3d 6f 76 65 72 77 72 69  74 65 20 6d 6f 64 65 0a  |=overwrite mode.|
00000350  62 32 09 6f 09 30 3d 66  69 6c 65 73 20 61 75 74  |b2.o.0=files aut|
00000360  6f 20 64 65 6c 65 74 65  64 20 31 3d 6e 6f 20 61  |o deleted 1=no a|
00000370  75 74 6f 20 64 65 6c 65  74 65 20 6f 66 20 66 69  |uto delete of fi|
00000380  6c 65 73 0a 62 33 09 66  09 53 65 74 20 69 66 20  |les.b3.f.Set if |
00000390  66 69 6c 65 20 61 6c 74  65 72 65 64 0a 62 34 09  |file altered.b4.|
000003a0  6f 66 09 53 65 74 20 69  66 20 66 69 6c 65 20 70  |of.Set if file p|
000003b0  65 72 6d 61 6e 65 6e 74  6c 79 20 72 65 61 64 20  |ermanently read |
000003c0  6f 6e 6c 79 20 28 62 69  67 20 52 20 69 6e 20 74  |only (big R in t|
000003d0  69 74 6c 65 29 0a 62 35  09 6f 77 09 53 65 74 20  |itle).b5.ow.Set |
000003e0  69 66 20 69 6e 20 68 65  78 20 65 6e 74 72 79 20  |if in hex entry |
000003f0  6d 6f 64 65 20 66 6f 72  20 74 68 69 73 20 77 69  |mode for this wi|
00000400  6e 64 6f 77 0a 62 36 09  6f 77 09 53 65 74 20 69  |ndow.b6.ow.Set i|
00000410  66 20 61 75 74 6f 20 77  69 64 74 68 20 6f 70 74  |f auto width opt|
00000420  69 6f 6e 20 61 63 74 69  76 65 0a 62 37 09 66 09  |ion active.b7.f.|
00000430  49 6e 64 69 63 61 74 65  73 20 66 69 6c 65 20 6e  |Indicates file n|
00000440  6f 74 20 69 6e 20 62 75  66 66 65 72 20 6c 69 73  |ot in buffer lis|
00000450  74 20 2d 20 6f 75 74 20  6f 66 20 64 61 74 65 20  |t - out of date |
00000460  2d 20 64 6f 20 6e 6f 74  20 75 73 65 0a 62 38 09  |- do not use.b8.|
00000470  6f 66 09 53 65 74 20 69  66 20 66 69 6c 65 20 74  |of.Set if file t|
00000480  65 6d 70 6f 72 61 72 69  6c 79 20 72 65 61 64 20  |emporarily read |
00000490  6f 6e 6c 79 20 28 73 6d  61 6c 6c 20 72 20 69 6e  |only (small r in|
000004a0  20 74 69 74 6c 65 29 0a  62 39 20 26 20 31 30 09  | title).b9 & 10.|
000004b0  6f 77 09 54 61 62 20 6d  6f 64 65 20 30 30 3d 55  |ow.Tab mode 00=U|
000004c0  6e 69 78 20 30 31 3d 21  45 64 69 74 20 31 30 3d  |nix 01=!Edit 10=|
000004d0  63 6f 6c 74 61 62 20 6d  6f 64 65 20 31 31 3d 75  |coltab mode 11=u|
000004e0  6e 64 65 66 69 6e 65 64  0a 62 31 31 09 6f 77 09  |ndefined.b11.ow.|
000004f0  53 65 74 20 6d 65 61 6e  73 20 69 6e 73 65 72 74  |Set means insert|
00000500  20 74 61 62 73 20 61 73  20 73 70 61 63 65 73 2e  | tabs as spaces.|
00000510  0a 62 31 32 09 6f 09 53  65 74 20 69 66 20 73 65  |.b12.o.Set if se|
00000520  61 72 63 68 20 63 61 73  65 20 73 65 6e 73 69 74  |arch case sensit|
00000530  69 76 65 2e 0a 62 31 33  09 6f 77 09 53 65 74 20  |ive..b13.ow.Set |
00000540  69 66 20 77 6f 72 64 77  72 61 70 20 6d 6f 64 65  |if wordwrap mode|
00000550  20 6f 6e 2e 0a 62 31 34  09 66 09 53 65 74 20 74  | on..b14.f.Set t|
00000560  6f 20 75 6e 6c 69 6e 6b  20 69 6e 70 75 74 20 70  |o unlink input p|
00000570  6f 73 69 74 69 6f 6e 20  66 72 6f 6d 20 69 6e 70  |osition from inp|
00000580  75 74 20 63 75 72 73 6f  72 2e 0a 62 31 35 09 6f  |ut cursor..b15.o|
00000590  09 53 65 74 20 66 6f 72  20 73 69 64 65 77 61 79  |.Set for sideway|
000005a0  73 20 70 72 69 6e 74 69  6e 67 20 69 6e 20 27 66  |s printing in 'f|
000005b0  61 6e 63 79 20 70 72 69  6e 74 27 2e 0a 62 31 36  |ancy print'..b16|
000005c0  09 6f 09 53 65 74 20 66  6f 72 20 64 6f 6e 27 74  |.o.Set for don't|
000005d0  20 61 64 64 20 74 69 74  6c 65 20 69 6e 20 27 66  | add title in 'f|
000005e0  61 6e 63 79 20 70 72 69  6e 74 27 2e 0a 62 31 37  |ancy print'..b17|
000005f0  09 6f 77 09 52 65 64 72  61 77 20 6d 6f 64 65 20  |.ow.Redraw mode |
00000600  6c 6f 77 20 62 69 74 20  2d 20 73 65 65 20 6c 61  |low bit - see la|
00000610  74 65 72 0a 62 31 38 09  6f 09 53 65 74 20 66 6f  |ter.b18.o.Set fo|
00000620  72 20 64 6f 6e 27 74 20  61 64 64 20 74 69 74 6c  |r don't add titl|
00000630  65 20 69 6e 20 27 71 75  69 63 6b 20 70 72 69 6e  |e in 'quick prin|
00000640  74 27 2e 0a 62 31 39 09  6f 77 09 53 65 74 20 66  |t'..b19.ow.Set f|
00000650  6f 72 20 64 6f 6e 27 74  20 75 73 65 20 73 65 61  |or don't use sea|
00000660  72 63 68 20 6d 61 63 72  6f 73 2e 0a 62 32 30 09  |rch macros..b20.|
00000670  6f 77 09 52 65 64 72 61  77 20 6d 6f 64 65 20 6d  |ow.Redraw mode m|
00000680  65 64 69 75 6d 20 62 69  74 20 2d 20 73 65 65 20  |edium bit - see |
00000690  6c 61 74 65 72 0a 62 32  31 09 6f 77 09 52 65 64  |later.b21.ow.Red|
000006a0  72 61 77 20 6d 6f 64 65  20 68 69 67 68 20 62 69  |raw mode high bi|
000006b0  74 20 2d 20 73 65 65 20  6c 61 74 65 72 0a 62 32  |t - see later.b2|
000006c0  32 09 6f 09 53 65 74 20  69 66 20 73 65 6c 65 63  |2.o.Set if selec|
000006d0  74 69 6f 6e 73 20 73 68  6f 75 6c 64 20 61 75 74  |tions should aut|
000006e0  6f 6d 61 74 69 63 61 6c  6c 79 20 76 61 6e 69 73  |omatically vanis|
000006f0  68 2e 0a 62 32 33 09 6f  09 4d 69 6e 69 62 75 66  |h..b23.o.Minibuf|
00000700  66 65 72 20 70 65 72 6d  61 6e 65 6e 74 20 69 66  |fer permanent if|
00000710  20 73 65 74 20 28 70 6f  70 75 70 20 6f 74 68 65  | set (popup othe|
00000720  72 77 69 73 65 29 2e 0a  62 32 34 09 66 09 53 65  |rwise)..b24.f.Se|
00000730  74 20 74 6f 20 70 72 65  76 65 6e 74 20 69 6e 70  |t to prevent inp|
00000740  75 74 20 63 75 72 73 6f  72 20 62 65 69 6e 67 20  |ut cursor being |
00000750  64 72 61 77 6e 20 61 66  74 65 72 20 61 20 74 65  |drawn after a te|
00000760  78 74 20 63 68 61 6e 67  65 2e 0a 62 32 35 09 6f  |xt change..b25.o|
00000770  09 53 65 74 20 69 66 20  67 61 69 6e 20 69 6e 70  |.Set if gain inp|
00000780  75 74 20 63 61 6c 6c 73  20 73 68 6f 75 6c 64 20  |ut calls should |
00000790  62 65 20 69 67 6e 6f 72  65 64 20 2d 20 69 6e 74  |be ignored - int|
000007a0  65 72 6e 61 6c 20 75 73  65 0a 62 32 36 09 6f 77  |ernal use.b26.ow|
000007b0  09 53 65 74 20 69 66 20  6c 69 6e 65 77 72 61 70  |.Set if linewrap|
000007c0  20 6d 6f 64 65 20 6f 6e  2e 0a 62 32 37 09 09 52  | mode on..b27..R|
000007d0  65 73 65 72 76 65 64 0a  62 32 38 09 09 52 65 73  |eserved.b28..Res|
000007e0  65 72 76 65 64 0a 62 32  39 09 09 52 65 73 65 72  |erved.b29..Reser|
000007f0  76 65 64 0a 62 33 30 09  77 09 49 6e 74 65 72 6e  |ved.b30.w.Intern|
00000800  61 6c 20 75 73 65 20 3a  20 57 69 6e 64 6f 77 20  |al use : Window |
00000810  63 68 61 6e 67 65 64 20  64 75 72 69 6e 67 20 73  |changed during s|
00000820  63 72 6f 6c 6c 69 6e 67  2e 0a 62 33 31 09 77 09  |crolling..b31.w.|
00000830  49 6e 74 65 72 6e 61 6c  20 75 73 65 20 3a 20 57  |Internal use : W|
00000840  69 6e 64 6f 77 20 6e 65  65 64 73 20 74 6f 20 62  |indow needs to b|
00000850  65 20 61 6c 74 65 72 65  64 20 61 66 74 65 72 20  |e altered after |
00000860  6d 6f 64 65 20 63 68 61  6e 67 65 2e 0a 0a 54 68  |mode change...Th|
00000870  65 20 72 65 64 72 61 77  20 6d 6f 64 65 20 62 69  |e redraw mode bi|
00000880  74 73 20 63 61 6e 20 62  65 20 64 65 73 63 72 69  |ts can be descri|
00000890  62 65 64 20 62 79 20 74  68 65 20 6d 61 73 6b 73  |bed by the masks|
000008a0  3a 0a 09 26 30 30 30 30  30 30 09 31 20 64 70 70  |:..&000000.1 dpp|
000008b0  20 73 79 73 74 65 6d 20  66 6f 6e 74 0a 09 26 30  | system font..&0|
000008c0  32 30 30 30 30 20 73 79  73 74 65 6d 20 66 6f 6e  |20000 system fon|
000008d0  74 20 76 69 61 20 76 64  75 0a 09 26 31 30 30 30  |t via vdu..&1000|
000008e0  30 30 20 73 63 61 6c 65  64 20 73 79 73 74 65 6d  |00 scaled system|
000008f0  20 66 6f 6e 74 0a 09 26  31 32 30 30 30 30 20 66  | font..&120000 f|
00000900  6f 6e 74 20 76 69 61 20  76 64 75 0a 09 26 32 30  |ont via vdu..&20|
00000910  30 30 30 30 20 66 61 73  74 20 66 6f 6e 74 20 72  |0000 fast font r|
00000920  65 64 72 61 77 0a 09 26  32 32 30 30 30 30 20 64  |edraw..&220000 d|
00000930  6f 75 62 6c 65 20 68 65  69 67 68 74 20 73 79 73  |ouble height sys|
00000940  74 65 6d 20 66 6f 6e 74  0a 09 26 33 30 30 30 30  |tem font..&30000|
00000950  30 20 72 65 73 65 72 76  65 64 0a 09 26 33 32 30  |0 reserved..&320|
00000960  30 30 30 20 72 65 73 65  72 76 65 64 0a 0a 4e 6f  |000 reserved..No|
00000970  77 20 74 68 65 20 27 66  6f 72 6d 61 74 27 20 77  |w the 'format' w|
00000980  6f 72 64 2e 20 54 68 69  73 20 77 6f 72 64 20 69  |ord. This word i|
00000990  73 20 76 65 72 79 20 69  6d 70 6f 72 74 61 6e 74  |s very important|
000009a0  20 61 73 20 69 74 20 63  6f 6e 74 61 69 6e 73 20  | as it contains |
000009b0  74 68 65 20 6d 6f 64 65  0a 6e 75 6d 62 65 72 20  |the mode.number |
000009c0  6f 66 20 74 68 65 20 77  69 6e 64 6f 77 2e 20 59  |of the window. Y|
000009d0  6f 75 20 73 68 6f 75 6c  64 20 75 73 65 20 5a 61  |ou should use Za|
000009e0  70 5f 4e 65 77 4d 6f 64  65 20 74 6f 20 63 68 61  |p_NewMode to cha|
000009f0  6e 67 65 20 69 74 2e 20  41 6c 6c 20 62 69 74 73  |nge it. All bits|
00000a00  20 61 72 65 0a 76 61 6c  69 64 20 69 6e 20 6f 70  | are.valid in op|
00000a10  74 5f 66 6f 72 6d 61 74  20 61 6e 64 20 77 5f 66  |t_format and w_f|
00000a20  6f 72 6d 61 74 2e 20 54  68 65 20 6f 70 74 5f 66  |ormat. The opt_f|
00000a30  6f 72 6d 61 74 20 6d 6f  64 65 20 69 73 20 74 68  |ormat mode is th|
00000a40  65 20 6f 70 74 69 6f 6e  73 20 6d 6f 64 65 0a 6d  |e options mode.m|
00000a50  65 6e 74 69 6f 6e 65 64  20 69 6e 20 74 68 65 20  |entioned in the |
00000a60  27 4f 70 74 69 6f 6e 73  2e 4d 6f 64 65 27 20 6d  |'Options.Mode' m|
00000a70  65 6e 75 2e 0a 0a 62 30  2d 62 37 09 4d 6f 64 65  |enu...b0-b7.Mode|
00000a80  20 6e 75 6d 62 65 72 20  28 30 2d 32 35 35 29 0a  | number (0-255).|
00000a90  62 38 09 30 3d 6e 6f 20  6c 69 6e 65 20 6e 75 6d  |b8.0=no line num|
00000aa0  62 65 72 73 20 31 3d 73  68 6f 77 20 6c 69 6e 65  |bers 1=show line|
00000ab0  20 6e 75 6d 62 65 72 73  0a 62 39 09 30 3d 6c 69  | numbers.b9.0=li|
00000ac0  6e 65 20 6e 75 6d 62 65  72 73 20 61 72 65 20 66  |ne numbers are f|
00000ad0  69 6c 65 20 6f 66 66 73  65 74 73 20 31 3d 6c 69  |ile offsets 1=li|
00000ae0  6e 65 20 6e 75 6d 62 65  72 73 20 61 72 65 20 6c  |ne numbers are l|
00000af0  69 6e 65 73 20 28 73 65  65 20 62 31 31 29 0a 62  |ines (see b11).b|
00000b00  31 30 09 30 3d 6c 69 6e  65 20 6e 75 6d 62 65 72  |10.0=line number|
00000b10  73 20 67 69 76 65 6e 20  69 6e 20 64 65 63 69 6d  |s given in decim|
00000b20  61 6c 20 31 3d 6c 69 6e  65 20 6e 75 6d 62 65 72  |al 1=line number|
00000b30  73 20 67 69 76 65 6e 20  69 6e 20 68 65 78 0a 62  |s given in hex.b|
00000b40  31 31 09 30 3d 6c 69 6e  65 20 6e 75 6d 62 65 72  |11.0=line number|
00000b50  73 20 61 72 65 20 70 68  79 73 69 63 61 6c 20 31  |s are physical 1|
00000b60  3d 6c 69 6e 65 20 6e 75  6d 62 65 72 73 20 61 72  |=line numbers ar|
00000b70  65 20 6c 6f 67 69 63 61  6c 0a 62 31 32 2d 62 31  |e logical.b12-b1|
00000b80  33 20 54 61 62 20 64 69  73 70 6c 61 79 20 66 6f  |3 Tab display fo|
00000b90  72 6d 61 74 20 30 30 3d  6e 6f 6e 65 20 30 31 3d  |rmat 00=none 01=|
00000ba0  73 70 61 63 65 73 20 31  30 3d 20 27 2d 3e 20 20  |spaces 10= '->  |
00000bb0  20 27 20 31 31 3d 27 2d  2d 2d 2d 2d 3e 27 0a 62  | ' 11='----->'.b|
00000bc0  31 34 09 30 3d 73 74 72  65 61 6d 20 65 64 69 74  |14.0=stream edit|
00000bd0  20 70 61 72 61 64 69 67  6d 20 31 3d 6c 69 6e 65  | paradigm 1=line|
00000be0  20 65 64 69 74 20 70 61  72 61 64 69 67 6d 0a 62  | edit paradigm.b|
00000bf0  31 35 09 53 65 74 20 66  6f 72 20 6e 6f 6e 20 73  |15.Set for non s|
00000c00  74 61 6e 64 61 72 64 20  65 64 69 74 20 6d 6f 64  |tandard edit mod|
00000c10  65 0a 62 31 36 09 53 65  74 20 66 6f 72 20 61 75  |e.b16.Set for au|
00000c20  74 6f 20 69 6e 64 65 6e  74 20 6d 6f 64 65 0a 62  |to indent mode.b|
00000c30  31 37 09 53 65 74 20 66  6f 72 20 62 69 67 20 65  |17.Set for big e|
00000c40  6e 64 69 61 6e 20 6d 6f  64 65 0a 62 31 38 2d 62  |ndian mode.b18-b|
00000c50  33 30 20 72 65 73 65 72  76 65 64 0a 62 33 31 09  |30 reserved.b31.|
00000c60  49 6e 74 65 72 6e 61 6c  20 75 73 65 20 3a 20 53  |Internal use : S|
00000c70  65 74 20 74 6f 20 66 6f  72 63 65 20 64 65 66 61  |et to force defa|
00000c80  75 6c 74 20 28 6f 70 74  69 6f 6e 73 29 20 6d 6f  |ult (options) mo|
00000c90  64 65 20 6f 6e 20 6c 6f  61 64 69 6e 67 20 61 20  |de on loading a |
00000ca0  66 69 6c 65 0a 0a 50 65  6f 70 6c 65 20 77 72 69  |file..People wri|
00000cb0  74 69 6e 67 20 6d 6f 64  65 73 20 73 68 6f 75 6c  |ting modes shoul|
00000cc0  64 20 6e 6f 74 65 20 74  68 61 74 20 69 74 20 69  |d note that it i|
00000cd0  73 20 74 68 65 69 72 20  72 65 73 70 6f 6e 73 69  |s their responsi|
00000ce0  62 69 6c 69 74 79 20 74  6f 20 73 61 76 65 20 74  |bility to save t|
00000cf0  68 65 0a 63 75 72 72 65  6e 74 20 6d 6f 64 65 20  |he.current mode |
00000d00  6f 70 74 69 6f 6e 73 2f  72 65 73 74 6f 72 65 20  |options/restore |
00000d10  74 68 65 20 6f 70 74 69  6f 6e 73 20 6f 6e 20 61  |the options on a|
00000d20  20 65 5f 65 6e 64 20 6f  72 20 65 5f 73 74 61 72  | e_end or e_star|
00000d30  74 20 63 61 6c 6c 2e 20  20 55 73 65 20 74 68 65  |t call.  Use the|
00000d40  0a 63 61 6c 6c 20 5a 61  70 5f 52 65 73 74 6f 72  |.call Zap_Restor|
00000d50  65 4d 6f 64 65 57 6f 72  64 20 6f 6e 20 79 6f 75  |eModeWord on you|
00000d60  72 20 65 5f 73 74 61 72  74 20 63 61 6c 6c 20 61  |r e_start call a|
00000d70  6e 64 20 5a 61 70 5f 53  61 76 65 4d 6f 64 65 57  |nd Zap_SaveModeW|
00000d80  6f 72 64 20 6f 6e 20 79  6f 75 72 0a 65 5f 65 6e  |ord on your.e_en|
00000d90  64 20 63 61 6c 6c 20 74  6f 20 61 63 63 6f 6d 70  |d call to accomp|
00000da0  6c 69 73 68 20 74 68 69  73 2e 0a                 |lish this..|
00000dab