Home » Archimedes archive » Archimedes World » AW-1994-06-Disc2.adf » Disk2Jun94 » !AWJune94/Goodies/Zap/!Zap/Changes
!AWJune94/Goodies/Zap/!Zap/Changes
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/Changes |
Read OK: | ✔ |
File size: | 2D0D bytes |
Load address: | 0000 |
Exec address: | 0000 |
File contents
************************************************************************** * Changes in Zap between versions 1.00 and 1.10 * ************************************************************************** This file documents the changes in Zap between versions 1.00 and 1.10. It also indicates my future plans for Zap and how to contact me with suggestions. Changes 1.00-1.10 ----------------- The main change between 1.00 and 1.10 is the coloured redraw code as mentioned in the last changes file. This involved a total rewrite of all my redraw code in all 4 modes (fast chars,vdu chars,fast font,vdu font), and took quite a long time so I'm afraid I haven't managed to do many of the other things I intended to. I'm going as fast as I can. I would like to thank those who have put work into this release of Zap, especially Martin Ebourne for writing an impressive colour C mode. NB CONFIG FILE FORMAT HAS CHANGED. Redraw changes: * The fast screen redraw is now in colour and handled by a separate module called ZapRedraw. Documentation for the module is supplied. It can handle up to 32 bits per pixel colour and any font resolution. See docs directory. Side effects of this are: * Cursor foreground and background colour can be set independently. * Selection foreground and background colour can be set independently. * A choice of different cursors is given. * By default an 'empty square' cursor is left to mark the cursor position when the window looses input focus. * Different background colours can be chosen in text mode so that spaces off the end of a line are now visible. * BASIC and Code mode redraw has been altered to highlight comments and things in a different colour. * Colour C and Assembler modes are now available (see below). * All colours are user configurable and are mode dependent. New C mode: * Martin Ebourne has written a new C mode for those of you who want colouring according to syntax. See the ZapMjeHelp file in the 3rdParty directory for full details. The module includes: * Colour C mode with compilation, bracket-matching, auto-indenting, space stripping on saving. * An Acorn Assembler mode with colour. * A simple Pascal mode. * Interface to StrongHelp, with a 'find help on word at cursor' command. * Command to comment out a line in C/assembler/Pascal. * A command to adjust the selection (F6 in !Edit). NB Bryan's C mode is still there and has been updated to version 0.20. New line editor: * Olly Betts has rewritten the LineEditor module to produce a new line editor with many improvements over RKL's. See the 3rd party directory. Main improvements include: * The Wimp setting of FX 4 is used so the line editor is usable in the Wimp environment and compatible with Zap taskwindows. * TC-shell key short cuts are supported. * The line editor can be run in multiple taskwindows at once, and keeps track of the different instantiations. * Shift-TAB jumps through the possible filename completions! NB The completion doesn't add a '.' after directory names. This is because Cat won't allow them (eg "Cat wibble."). This is not a bug. The '.' should be optional in a future version. Utils module: * Paul Moore has written a utility module for Zap which offers some extra commands, including: * A command to search for the word at the current cursor position. * A command to filter the selected region through a unix like task. * Commands to move the window about using keys. * Delete word to left and right functions. NB This module is not installed by default to save memory. Simply uncomment the relevant line of the !Run file to install it. Misc changes: * The mode a file loaded into can now be based on the file path name. See the keys file variables &500+ for examples. * Swap window now brings the window to the front (see the keys file). * Big endian option added for viewing ARM6 code in big endian mode :-) * Separate key codes added for the keypad keys. (see docs.keycodes file). * The "*" operator in the keys file generalised to copy any range of keys. * Quit now works properly on RO3, restarting the shutdown procedure etc and the quit icon can now be 3D. * Template file chosen according to OS number (see !Run file). * Ctrl U now acts on the key immediately (like emacs) unless the key is one of: Delete/digit/Return. * Check datestamp is now on by default. I hope to have cured the network problems. If not then let me know! * Changed the scroll offset code so cursor is now 'centered' when overlap occurs. * Added 'confine cursor' option to keep cursor in window when scrolling. * Removed many of the standard search macros, so ()'s now match ()'s. * Added the 'C like' search commands: alert \a 7 backspace \b 8 carriage return \r 13 formfeed \f 12 horizontal tab \t 9 newline \n 10 vertical tab \v 11 * Cursor doesn't flash any more if >=4 characters long. * Ctrl U then up/down has been optimised. Now acts immediately. * The 'window width' is now handled by a single menu entry on the display menu rather than a separate one for each mode. This should work for all modes. * More sensible error messages given when a file is not loadable. * Vdu 23 scrolls now handled by the taskwindow mode - so you can now run ARMBE in a window! :-) To get the function keys (eg shift F4) type ^Q first. Try it! * ""s are turned into " when a command string is processed. Eg INSERT """hello""". * Filename completion improved in that a '.' is placed after the name if it is a directory and matches are now now case sensitive. I have major improvements planned .. * Warning is given in the minibuffer instead of an error being generated if you type in a read only buffer. * Minibuffer now goes away on a new keypress. * There is a command to copy a windows options to be the default ones, though it doesn't handle mode options yet (see the misc menu). * Taskwindow mode can now copy large selections to the current input properly. I'm afraid move (cV) doesn't work well on >80 byte of text. Use copy (cC) instead. * Can now resize task window screen while running. * Quickprint should now let form feeds (ascii 12) through. * Amu/Make throwback all goes into one file instead of opening multiple files. Docs changes: * Keycodes file created. * A modes word of workspace can now point to a block of workspace. * Added e_prevline entry point so can start screen updates at the start of a line. * Config file redesigned to be in modular form and depend on mode name rather than mode number. Misc bugs and things: * I had reports that version 1.00 did not work on Risc OS 3, where as 0.9 did. This problem is easily fixed by changing the line in the !Run file which checks for Risc Os 3 to test for 3.1, as I have done. If there are still problems then contact me immediately. * There was a bug in v1.0 that meant commands chained together with spaces round the colon eg "LEFT : RIGHT" didn't work. This has been fixed. * Fancy print still won't work with the turbodrivers (produces a page of black). I don't know why! Thanks to the following for help/suggestions/donations/bug reports: P.Allen, O.Betts, C.Booker, M.Borcherds, T.Browse, B.Brunswick, N. Carson, D.Cass, C.Cepurneek, P.Colmer, A.Corey, M.Corley, J.Coxhead, N.Craig-Wood, G.Crow, R.Darlington, J.Davidson, M.Dorey, M.Ebourne, J.Freeman, M.Geddes, I.Giblin, D.Gilbert, S.Glass, Z.Gunnar, R.Hallas, B.Harris, P.Hazel, D.Holden, D.Howe, M.Huges, R.Johnson, H.Klingspohr, C.Latham, D.Layfield, G.Lee, G.S.Long :-), P.Long, M.Lukat, G.McCaughan, A.McMurry, P.McTiernan, A.Merritt, P.Moore, D.Murphy, E.Naish, J.Ovesen, I.Palmer, O.Reinert, A.Raab, H.Rogers, B.Scattergood, K.Schlichting, J.Smith, N.A.Smith, R.L.Smith, A. Southgate, X.Syntixakis, G.Taylor, A. Thoukydides, L.Tommaso, C.Turnbull, E.van de Pol, J.Veness, J.Wallace, R.Watts, P.Wheatley, T.Willemse, M.Williams, R.Wilson, M.Wooding, D.Xanthakis, D.Yule, and all members of the Oxford Arc User Group. Proposed changes 1.10-1.20 -------------------------- Version 1.20 should be released sometime late summer, hopefully late September, depending on my workload. I'm sorry this release was delayed but it was a bit silly of me to put the release date during the second half of the university term! Things weren't helped by our network going down - apologies to anyone who's mail got lost. There are several major things I need to do: (1) Change my assembler. Editing a 850k BASIC file which is numbered in 2's because there aren't enough line numbers to number it in 3's (28,400 lines atm) is getting beyond a joke! (2) Rewrite the menu code so that each menu entry just runs a Zap command and menus are configurable. This will save space and make things more versatile. I can also merge HelpData with Commands so not duplicating everything twice. (3) Add a global 'Fold' option to turn every text-like mode into a folding mode. This probably won't be finished by the next release. Smaller things to be done: (most of them from the vsn 1 changes file :-( ) * 24 bit colour choosing instead of the menu of wimp colours used atm. All the redraw code is 24 bit now, I just have to change the colour selector. * Adjust drag for resizing minibuffer. * A CR<->LF command. * Reconnect taskwindow command. * Option to load dual edits in Read Only mode. * Compress tabs (not inside strings) command. * Adjust on title of file removes whole throwback of that file. * Function to expand tabs to spaces. * Bracket matching in basic mode. * Rawdata (type &FF1) mode to handle CRLF/LFCR line endings. * Have a option to run a list of Zap commands in the first few lines of a text file, when the file is loaded. * Indication in title when taskwindow still linked. * Search and replace confined to region. * Count option in search and replace. * Update cursor posn when GotoBox open. * Edit tabs should stop at ('s (also word plus/minus). * Configurable pixel indent from lhs of window. * Variable line number column width. * Cycle window (all window) + move next one to top commands. * Create a new window in mode/filetype via minibuffer. * Aliases! (for commands, eg LET EMACS=BASEMAP 1 type of thing). * Separate commands for swap case of a char and region? * Option to have the goto/search dboxes behaving as messydos - ie, first put the old choice in the dbox, but remove it if the user starts to type over it. * Search as you type wrapping round a la emacs. * Grungy repainting of cursor in margin borders to be improved. * Update menu shortcuts when basemap changes. * Want click on window with minibuffer open -> minibuffer. * Add key short cuts for writable dialogue boxes. * Configurable string sent to printer at end of quickprint. Suggestions/Contacting me ------------------------- If you have any suggestions concerning the main Zap module, please don't hesitate to contact me. I will almost certainly reply if you use e-mail (unless I can't get through, which has happened a couple of times). My address is in the 'Copyright' file. If your suggestions concern one of the extension modes (eg C mode) or template files, or one of the other things in the 3rdParty directory not written by me, then please write to the author concerned, and not to me (unless you have trouble getting through). All their addresses are in the 3rdParty.ReadMe file.
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 2a 0a 2a 20 43 68 61 |**********.* Cha| 00000050 6e 67 65 73 20 69 6e 20 5a 61 70 20 62 65 74 77 |nges in Zap betw| 00000060 65 65 6e 20 76 65 72 73 69 6f 6e 73 20 31 2e 30 |een versions 1.0| 00000070 30 20 61 6e 64 20 31 2e 31 30 20 20 20 20 20 20 |0 and 1.10 | 00000080 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00000090 20 20 20 20 2a 0a 2a 2a 2a 2a 2a 2a 2a 2a 2a 2a | *.**********| 000000a0 2a 2a 2a 2a 2a 2a 2a 2a 2a 2a 2a 2a 2a 2a 2a 2a |****************| * 000000e0 0a 0a 54 68 69 73 20 66 69 6c 65 20 64 6f 63 75 |..This file docu| 000000f0 6d 65 6e 74 73 20 74 68 65 20 63 68 61 6e 67 65 |ments the change| 00000100 73 20 69 6e 20 5a 61 70 20 62 65 74 77 65 65 6e |s in Zap between| 00000110 20 76 65 72 73 69 6f 6e 73 20 31 2e 30 30 20 61 | versions 1.00 a| 00000120 6e 64 20 31 2e 31 30 2e 20 49 74 0a 61 6c 73 6f |nd 1.10. It.also| 00000130 20 69 6e 64 69 63 61 74 65 73 20 6d 79 20 66 75 | indicates my fu| 00000140 74 75 72 65 20 70 6c 61 6e 73 20 66 6f 72 20 5a |ture plans for Z| 00000150 61 70 20 61 6e 64 20 68 6f 77 20 74 6f 20 63 6f |ap and how to co| 00000160 6e 74 61 63 74 20 6d 65 20 77 69 74 68 0a 73 75 |ntact me with.su| 00000170 67 67 65 73 74 69 6f 6e 73 2e 0a 0a 43 68 61 6e |ggestions...Chan| 00000180 67 65 73 20 31 2e 30 30 2d 31 2e 31 30 0a 2d 2d |ges 1.00-1.10.--| 00000190 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 0a |---------------.| 000001a0 0a 54 68 65 20 6d 61 69 6e 20 63 68 61 6e 67 65 |.The main change| 000001b0 20 62 65 74 77 65 65 6e 20 31 2e 30 30 20 61 6e | between 1.00 an| 000001c0 64 20 31 2e 31 30 20 69 73 20 74 68 65 20 63 6f |d 1.10 is the co| 000001d0 6c 6f 75 72 65 64 20 72 65 64 72 61 77 20 63 6f |loured redraw co| 000001e0 64 65 20 61 73 0a 6d 65 6e 74 69 6f 6e 65 64 20 |de as.mentioned | 000001f0 69 6e 20 74 68 65 20 6c 61 73 74 20 63 68 61 6e |in the last chan| 00000200 67 65 73 20 66 69 6c 65 2e 20 54 68 69 73 20 69 |ges file. This i| 00000210 6e 76 6f 6c 76 65 64 20 61 20 74 6f 74 61 6c 20 |nvolved a total | 00000220 72 65 77 72 69 74 65 20 6f 66 20 61 6c 6c 20 6d |rewrite of all m| 00000230 79 0a 72 65 64 72 61 77 20 63 6f 64 65 20 69 6e |y.redraw code in| 00000240 20 61 6c 6c 20 34 20 6d 6f 64 65 73 20 28 66 61 | all 4 modes (fa| 00000250 73 74 20 63 68 61 72 73 2c 76 64 75 20 63 68 61 |st chars,vdu cha| 00000260 72 73 2c 66 61 73 74 20 66 6f 6e 74 2c 76 64 75 |rs,fast font,vdu| 00000270 20 66 6f 6e 74 29 2c 20 61 6e 64 0a 74 6f 6f 6b | font), and.took| 00000280 20 71 75 69 74 65 20 61 20 6c 6f 6e 67 20 74 69 | quite a long ti| 00000290 6d 65 20 73 6f 20 49 27 6d 20 61 66 72 61 69 64 |me so I'm afraid| 000002a0 20 49 20 68 61 76 65 6e 27 74 20 6d 61 6e 61 67 | I haven't manag| 000002b0 65 64 20 74 6f 20 64 6f 20 6d 61 6e 79 20 6f 66 |ed to do many of| 000002c0 20 74 68 65 0a 6f 74 68 65 72 20 74 68 69 6e 67 | the.other thing| 000002d0 73 20 49 20 69 6e 74 65 6e 64 65 64 20 74 6f 2e |s I intended to.| 000002e0 20 49 27 6d 20 67 6f 69 6e 67 20 61 73 20 66 61 | I'm going as fa| 000002f0 73 74 20 61 73 20 49 20 63 61 6e 2e 20 49 20 77 |st as I can. I w| 00000300 6f 75 6c 64 20 6c 69 6b 65 20 74 6f 0a 74 68 61 |ould like to.tha| 00000310 6e 6b 20 74 68 6f 73 65 20 77 68 6f 20 68 61 76 |nk those who hav| 00000320 65 20 70 75 74 20 77 6f 72 6b 20 69 6e 74 6f 20 |e put work into | 00000330 74 68 69 73 20 72 65 6c 65 61 73 65 20 6f 66 20 |this release of | 00000340 5a 61 70 2c 20 65 73 70 65 63 69 61 6c 6c 79 20 |Zap, especially | 00000350 4d 61 72 74 69 6e 0a 45 62 6f 75 72 6e 65 20 66 |Martin.Ebourne f| 00000360 6f 72 20 77 72 69 74 69 6e 67 20 61 6e 20 69 6d |or writing an im| 00000370 70 72 65 73 73 69 76 65 20 63 6f 6c 6f 75 72 20 |pressive colour | 00000380 43 20 6d 6f 64 65 2e 0a 4e 42 20 43 4f 4e 46 49 |C mode..NB CONFI| 00000390 47 20 46 49 4c 45 20 46 4f 52 4d 41 54 20 48 41 |G FILE FORMAT HA| 000003a0 53 20 43 48 41 4e 47 45 44 2e 0a 0a 52 65 64 72 |S CHANGED...Redr| 000003b0 61 77 20 63 68 61 6e 67 65 73 3a 0a 2a 20 54 68 |aw changes:.* Th| 000003c0 65 20 66 61 73 74 20 73 63 72 65 65 6e 20 72 65 |e fast screen re| 000003d0 64 72 61 77 20 69 73 20 6e 6f 77 20 69 6e 20 63 |draw is now in c| 000003e0 6f 6c 6f 75 72 20 61 6e 64 20 68 61 6e 64 6c 65 |olour and handle| 000003f0 64 20 62 79 20 61 20 73 65 70 61 72 61 74 65 20 |d by a separate | 00000400 6d 6f 64 75 6c 65 0a 20 20 63 61 6c 6c 65 64 20 |module. called | 00000410 5a 61 70 52 65 64 72 61 77 2e 20 44 6f 63 75 6d |ZapRedraw. Docum| 00000420 65 6e 74 61 74 69 6f 6e 20 66 6f 72 20 74 68 65 |entation for the| 00000430 20 6d 6f 64 75 6c 65 20 69 73 20 73 75 70 70 6c | module is suppl| 00000440 69 65 64 2e 20 49 74 20 63 61 6e 20 68 61 6e 64 |ied. It can hand| 00000450 6c 65 0a 20 20 75 70 20 74 6f 20 33 32 20 62 69 |le. up to 32 bi| 00000460 74 73 20 70 65 72 20 70 69 78 65 6c 20 63 6f 6c |ts per pixel col| 00000470 6f 75 72 20 61 6e 64 20 61 6e 79 20 66 6f 6e 74 |our and any font| 00000480 20 72 65 73 6f 6c 75 74 69 6f 6e 2e 20 53 65 65 | resolution. See| 00000490 20 64 6f 63 73 20 64 69 72 65 63 74 6f 72 79 2e | docs directory.| 000004a0 0a 20 20 53 69 64 65 20 65 66 66 65 63 74 73 20 |. Side effects | 000004b0 6f 66 20 74 68 69 73 20 61 72 65 3a 0a 2a 20 43 |of this are:.* C| 000004c0 75 72 73 6f 72 20 66 6f 72 65 67 72 6f 75 6e 64 |ursor foreground| 000004d0 20 61 6e 64 20 62 61 63 6b 67 72 6f 75 6e 64 20 | and background | 000004e0 63 6f 6c 6f 75 72 20 63 61 6e 20 62 65 20 73 65 |colour can be se| 000004f0 74 20 69 6e 64 65 70 65 6e 64 65 6e 74 6c 79 2e |t independently.| 00000500 0a 2a 20 53 65 6c 65 63 74 69 6f 6e 20 66 6f 72 |.* Selection for| 00000510 65 67 72 6f 75 6e 64 20 61 6e 64 20 62 61 63 6b |eground and back| 00000520 67 72 6f 75 6e 64 20 63 6f 6c 6f 75 72 20 63 61 |ground colour ca| 00000530 6e 20 62 65 20 73 65 74 20 69 6e 64 65 70 65 6e |n be set indepen| 00000540 64 65 6e 74 6c 79 2e 0a 2a 20 41 20 63 68 6f 69 |dently..* A choi| 00000550 63 65 20 6f 66 20 64 69 66 66 65 72 65 6e 74 20 |ce of different | 00000560 63 75 72 73 6f 72 73 20 69 73 20 67 69 76 65 6e |cursors is given| 00000570 2e 0a 2a 20 42 79 20 64 65 66 61 75 6c 74 20 61 |..* By default a| 00000580 6e 20 27 65 6d 70 74 79 20 73 71 75 61 72 65 27 |n 'empty square'| 00000590 20 63 75 72 73 6f 72 20 69 73 20 6c 65 66 74 20 | cursor is left | 000005a0 74 6f 20 6d 61 72 6b 20 74 68 65 20 63 75 72 73 |to mark the curs| 000005b0 6f 72 20 70 6f 73 69 74 69 6f 6e 0a 20 20 77 68 |or position. wh| 000005c0 65 6e 20 74 68 65 20 77 69 6e 64 6f 77 20 6c 6f |en the window lo| 000005d0 6f 73 65 73 20 69 6e 70 75 74 20 66 6f 63 75 73 |oses input focus| 000005e0 2e 0a 2a 20 44 69 66 66 65 72 65 6e 74 20 62 61 |..* Different ba| 000005f0 63 6b 67 72 6f 75 6e 64 20 63 6f 6c 6f 75 72 73 |ckground colours| 00000600 20 63 61 6e 20 62 65 20 63 68 6f 73 65 6e 20 69 | can be chosen i| 00000610 6e 20 74 65 78 74 20 6d 6f 64 65 20 73 6f 20 74 |n text mode so t| 00000620 68 61 74 20 73 70 61 63 65 73 20 6f 66 66 0a 20 |hat spaces off. | 00000630 20 74 68 65 20 65 6e 64 20 6f 66 20 61 20 6c 69 | the end of a li| 00000640 6e 65 20 61 72 65 20 6e 6f 77 20 76 69 73 69 62 |ne are now visib| 00000650 6c 65 2e 0a 2a 20 42 41 53 49 43 20 61 6e 64 20 |le..* BASIC and | 00000660 43 6f 64 65 20 6d 6f 64 65 20 72 65 64 72 61 77 |Code mode redraw| 00000670 20 68 61 73 20 62 65 65 6e 20 61 6c 74 65 72 65 | has been altere| 00000680 64 20 74 6f 20 68 69 67 68 6c 69 67 68 74 20 63 |d to highlight c| 00000690 6f 6d 6d 65 6e 74 73 20 61 6e 64 0a 20 20 74 68 |omments and. th| 000006a0 69 6e 67 73 20 69 6e 20 61 20 64 69 66 66 65 72 |ings in a differ| 000006b0 65 6e 74 20 63 6f 6c 6f 75 72 2e 0a 2a 20 43 6f |ent colour..* Co| 000006c0 6c 6f 75 72 20 43 20 61 6e 64 20 41 73 73 65 6d |lour C and Assem| 000006d0 62 6c 65 72 20 6d 6f 64 65 73 20 61 72 65 20 6e |bler modes are n| 000006e0 6f 77 20 61 76 61 69 6c 61 62 6c 65 20 28 73 65 |ow available (se| 000006f0 65 20 62 65 6c 6f 77 29 2e 0a 2a 20 41 6c 6c 20 |e below)..* All | 00000700 63 6f 6c 6f 75 72 73 20 61 72 65 20 75 73 65 72 |colours are user| 00000710 20 63 6f 6e 66 69 67 75 72 61 62 6c 65 20 61 6e | configurable an| 00000720 64 20 61 72 65 20 6d 6f 64 65 20 64 65 70 65 6e |d are mode depen| 00000730 64 65 6e 74 2e 0a 0a 4e 65 77 20 43 20 6d 6f 64 |dent...New C mod| 00000740 65 3a 0a 2a 20 4d 61 72 74 69 6e 20 45 62 6f 75 |e:.* Martin Ebou| 00000750 72 6e 65 20 68 61 73 20 77 72 69 74 74 65 6e 20 |rne has written | 00000760 61 20 6e 65 77 20 43 20 6d 6f 64 65 20 66 6f 72 |a new C mode for| 00000770 20 74 68 6f 73 65 20 6f 66 20 79 6f 75 20 77 68 | those of you wh| 00000780 6f 20 77 61 6e 74 20 63 6f 6c 6f 75 72 69 6e 67 |o want colouring| 00000790 0a 20 20 61 63 63 6f 72 64 69 6e 67 20 74 6f 20 |. according to | 000007a0 73 79 6e 74 61 78 2e 20 53 65 65 20 74 68 65 20 |syntax. See the | 000007b0 5a 61 70 4d 6a 65 48 65 6c 70 20 66 69 6c 65 20 |ZapMjeHelp file | 000007c0 69 6e 20 74 68 65 20 33 72 64 50 61 72 74 79 20 |in the 3rdParty | 000007d0 64 69 72 65 63 74 6f 72 79 20 66 6f 72 0a 20 20 |directory for. | 000007e0 66 75 6c 6c 20 64 65 74 61 69 6c 73 2e 20 54 68 |full details. Th| 000007f0 65 20 6d 6f 64 75 6c 65 20 69 6e 63 6c 75 64 65 |e module include| 00000800 73 3a 0a 2a 20 43 6f 6c 6f 75 72 20 43 20 6d 6f |s:.* Colour C mo| 00000810 64 65 20 77 69 74 68 20 63 6f 6d 70 69 6c 61 74 |de with compilat| 00000820 69 6f 6e 2c 20 62 72 61 63 6b 65 74 2d 6d 61 74 |ion, bracket-mat| 00000830 63 68 69 6e 67 2c 20 61 75 74 6f 2d 69 6e 64 65 |ching, auto-inde| 00000840 6e 74 69 6e 67 2c 0a 20 20 73 70 61 63 65 20 73 |nting,. space s| 00000850 74 72 69 70 70 69 6e 67 20 6f 6e 20 73 61 76 69 |tripping on savi| 00000860 6e 67 2e 0a 2a 20 41 6e 20 41 63 6f 72 6e 20 41 |ng..* An Acorn A| 00000870 73 73 65 6d 62 6c 65 72 20 6d 6f 64 65 20 77 69 |ssembler mode wi| 00000880 74 68 20 63 6f 6c 6f 75 72 2e 0a 2a 20 41 20 73 |th colour..* A s| 00000890 69 6d 70 6c 65 20 50 61 73 63 61 6c 20 6d 6f 64 |imple Pascal mod| 000008a0 65 2e 0a 2a 20 49 6e 74 65 72 66 61 63 65 20 74 |e..* Interface t| 000008b0 6f 20 53 74 72 6f 6e 67 48 65 6c 70 2c 20 77 69 |o StrongHelp, wi| 000008c0 74 68 20 61 20 27 66 69 6e 64 20 68 65 6c 70 20 |th a 'find help | 000008d0 6f 6e 20 77 6f 72 64 20 61 74 20 63 75 72 73 6f |on word at curso| 000008e0 72 27 20 63 6f 6d 6d 61 6e 64 2e 0a 2a 20 43 6f |r' command..* Co| 000008f0 6d 6d 61 6e 64 20 74 6f 20 63 6f 6d 6d 65 6e 74 |mmand to comment| 00000900 20 6f 75 74 20 61 20 6c 69 6e 65 20 69 6e 20 43 | out a line in C| 00000910 2f 61 73 73 65 6d 62 6c 65 72 2f 50 61 73 63 61 |/assembler/Pasca| 00000920 6c 2e 0a 2a 20 41 20 63 6f 6d 6d 61 6e 64 20 74 |l..* A command t| 00000930 6f 20 61 64 6a 75 73 74 20 74 68 65 20 73 65 6c |o adjust the sel| 00000940 65 63 74 69 6f 6e 20 28 46 36 20 69 6e 20 21 45 |ection (F6 in !E| 00000950 64 69 74 29 2e 0a 4e 42 20 42 72 79 61 6e 27 73 |dit)..NB Bryan's| 00000960 20 43 20 6d 6f 64 65 20 69 73 20 73 74 69 6c 6c | C mode is still| 00000970 20 74 68 65 72 65 20 61 6e 64 20 68 61 73 20 62 | there and has b| 00000980 65 65 6e 20 75 70 64 61 74 65 64 20 74 6f 20 76 |een updated to v| 00000990 65 72 73 69 6f 6e 20 30 2e 32 30 2e 0a 0a 4e 65 |ersion 0.20...Ne| 000009a0 77 20 6c 69 6e 65 20 65 64 69 74 6f 72 3a 0a 2a |w line editor:.*| 000009b0 20 4f 6c 6c 79 20 42 65 74 74 73 20 68 61 73 20 | Olly Betts has | 000009c0 72 65 77 72 69 74 74 65 6e 20 74 68 65 20 4c 69 |rewritten the Li| 000009d0 6e 65 45 64 69 74 6f 72 20 6d 6f 64 75 6c 65 20 |neEditor module | 000009e0 74 6f 20 70 72 6f 64 75 63 65 20 61 20 6e 65 77 |to produce a new| 000009f0 20 6c 69 6e 65 20 65 64 69 74 6f 72 0a 20 20 77 | line editor. w| 00000a00 69 74 68 20 6d 61 6e 79 20 69 6d 70 72 6f 76 65 |ith many improve| 00000a10 6d 65 6e 74 73 20 6f 76 65 72 20 52 4b 4c 27 73 |ments over RKL's| 00000a20 2e 20 53 65 65 20 74 68 65 20 33 72 64 20 70 61 |. See the 3rd pa| 00000a30 72 74 79 20 64 69 72 65 63 74 6f 72 79 2e 20 4d |rty directory. M| 00000a40 61 69 6e 0a 20 20 69 6d 70 72 6f 76 65 6d 65 6e |ain. improvemen| 00000a50 74 73 20 69 6e 63 6c 75 64 65 3a 0a 2a 20 54 68 |ts include:.* Th| 00000a60 65 20 57 69 6d 70 20 73 65 74 74 69 6e 67 20 6f |e Wimp setting o| 00000a70 66 20 46 58 20 34 20 69 73 20 75 73 65 64 20 73 |f FX 4 is used s| 00000a80 6f 20 74 68 65 20 6c 69 6e 65 20 65 64 69 74 6f |o the line edito| 00000a90 72 20 69 73 20 75 73 61 62 6c 65 20 69 6e 20 74 |r is usable in t| 00000aa0 68 65 20 57 69 6d 70 0a 20 20 65 6e 76 69 72 6f |he Wimp. enviro| 00000ab0 6e 6d 65 6e 74 20 61 6e 64 20 63 6f 6d 70 61 74 |nment and compat| 00000ac0 69 62 6c 65 20 77 69 74 68 20 5a 61 70 20 74 61 |ible with Zap ta| 00000ad0 73 6b 77 69 6e 64 6f 77 73 2e 0a 2a 20 54 43 2d |skwindows..* TC-| 00000ae0 73 68 65 6c 6c 20 6b 65 79 20 73 68 6f 72 74 20 |shell key short | 00000af0 63 75 74 73 20 61 72 65 20 73 75 70 70 6f 72 74 |cuts are support| 00000b00 65 64 2e 0a 2a 20 54 68 65 20 6c 69 6e 65 20 65 |ed..* The line e| 00000b10 64 69 74 6f 72 20 63 61 6e 20 62 65 20 72 75 6e |ditor can be run| 00000b20 20 69 6e 20 6d 75 6c 74 69 70 6c 65 20 74 61 73 | in multiple tas| 00000b30 6b 77 69 6e 64 6f 77 73 20 61 74 20 6f 6e 63 65 |kwindows at once| 00000b40 2c 20 61 6e 64 20 6b 65 65 70 73 0a 20 20 74 72 |, and keeps. tr| 00000b50 61 63 6b 20 6f 66 20 74 68 65 20 64 69 66 66 65 |ack of the diffe| 00000b60 72 65 6e 74 20 69 6e 73 74 61 6e 74 69 61 74 69 |rent instantiati| 00000b70 6f 6e 73 2e 0a 2a 20 53 68 69 66 74 2d 54 41 42 |ons..* Shift-TAB| 00000b80 20 6a 75 6d 70 73 20 74 68 72 6f 75 67 68 20 74 | jumps through t| 00000b90 68 65 20 70 6f 73 73 69 62 6c 65 20 66 69 6c 65 |he possible file| 00000ba0 6e 61 6d 65 20 63 6f 6d 70 6c 65 74 69 6f 6e 73 |name completions| 00000bb0 21 0a 4e 42 20 54 68 65 20 63 6f 6d 70 6c 65 74 |!.NB The complet| 00000bc0 69 6f 6e 20 64 6f 65 73 6e 27 74 20 61 64 64 20 |ion doesn't add | 00000bd0 61 20 27 2e 27 20 61 66 74 65 72 20 64 69 72 65 |a '.' after dire| 00000be0 63 74 6f 72 79 20 6e 61 6d 65 73 2e 20 54 68 69 |ctory names. Thi| 00000bf0 73 20 69 73 20 62 65 63 61 75 73 65 0a 43 61 74 |s is because.Cat| 00000c00 20 77 6f 6e 27 74 20 61 6c 6c 6f 77 20 74 68 65 | won't allow the| 00000c10 6d 20 28 65 67 20 22 43 61 74 20 77 69 62 62 6c |m (eg "Cat wibbl| 00000c20 65 2e 22 29 2e 20 54 68 69 73 20 69 73 20 6e 6f |e."). This is no| 00000c30 74 20 61 20 62 75 67 2e 20 54 68 65 20 27 2e 27 |t a bug. The '.'| 00000c40 20 73 68 6f 75 6c 64 0a 62 65 20 6f 70 74 69 6f | should.be optio| 00000c50 6e 61 6c 20 69 6e 20 61 20 66 75 74 75 72 65 20 |nal in a future | 00000c60 76 65 72 73 69 6f 6e 2e 0a 0a 55 74 69 6c 73 20 |version...Utils | 00000c70 6d 6f 64 75 6c 65 3a 0a 2a 20 50 61 75 6c 20 4d |module:.* Paul M| 00000c80 6f 6f 72 65 20 68 61 73 20 77 72 69 74 74 65 6e |oore has written| 00000c90 20 61 20 75 74 69 6c 69 74 79 20 6d 6f 64 75 6c | a utility modul| 00000ca0 65 20 66 6f 72 20 5a 61 70 20 77 68 69 63 68 20 |e for Zap which | 00000cb0 6f 66 66 65 72 73 20 73 6f 6d 65 20 65 78 74 72 |offers some extr| 00000cc0 61 0a 20 20 63 6f 6d 6d 61 6e 64 73 2c 20 69 6e |a. commands, in| 00000cd0 63 6c 75 64 69 6e 67 3a 0a 2a 20 41 20 63 6f 6d |cluding:.* A com| 00000ce0 6d 61 6e 64 20 74 6f 20 73 65 61 72 63 68 20 66 |mand to search f| 00000cf0 6f 72 20 74 68 65 20 77 6f 72 64 20 61 74 20 74 |or the word at t| 00000d00 68 65 20 63 75 72 72 65 6e 74 20 63 75 72 73 6f |he current curso| 00000d10 72 20 70 6f 73 69 74 69 6f 6e 2e 0a 2a 20 41 20 |r position..* A | 00000d20 63 6f 6d 6d 61 6e 64 20 74 6f 20 66 69 6c 74 65 |command to filte| 00000d30 72 20 74 68 65 20 73 65 6c 65 63 74 65 64 20 72 |r the selected r| 00000d40 65 67 69 6f 6e 20 74 68 72 6f 75 67 68 20 61 20 |egion through a | 00000d50 75 6e 69 78 20 6c 69 6b 65 20 74 61 73 6b 2e 0a |unix like task..| 00000d60 2a 20 43 6f 6d 6d 61 6e 64 73 20 74 6f 20 6d 6f |* Commands to mo| 00000d70 76 65 20 74 68 65 20 77 69 6e 64 6f 77 20 61 62 |ve the window ab| 00000d80 6f 75 74 20 75 73 69 6e 67 20 6b 65 79 73 2e 0a |out using keys..| 00000d90 2a 20 44 65 6c 65 74 65 20 77 6f 72 64 20 74 6f |* Delete word to| 00000da0 20 6c 65 66 74 20 61 6e 64 20 72 69 67 68 74 20 | left and right | 00000db0 66 75 6e 63 74 69 6f 6e 73 2e 0a 4e 42 20 54 68 |functions..NB Th| 00000dc0 69 73 20 6d 6f 64 75 6c 65 20 69 73 20 6e 6f 74 |is module is not| 00000dd0 20 69 6e 73 74 61 6c 6c 65 64 20 62 79 20 64 65 | installed by de| 00000de0 66 61 75 6c 74 20 74 6f 20 73 61 76 65 20 6d 65 |fault to save me| 00000df0 6d 6f 72 79 2e 20 53 69 6d 70 6c 79 20 75 6e 63 |mory. Simply unc| 00000e00 6f 6d 6d 65 6e 74 0a 74 68 65 20 72 65 6c 65 76 |omment.the relev| 00000e10 61 6e 74 20 6c 69 6e 65 20 6f 66 20 74 68 65 20 |ant line of the | 00000e20 21 52 75 6e 20 66 69 6c 65 20 74 6f 20 69 6e 73 |!Run file to ins| 00000e30 74 61 6c 6c 20 69 74 2e 0a 0a 4d 69 73 63 20 63 |tall it...Misc c| 00000e40 68 61 6e 67 65 73 3a 0a 2a 20 54 68 65 20 6d 6f |hanges:.* The mo| 00000e50 64 65 20 61 20 66 69 6c 65 20 6c 6f 61 64 65 64 |de a file loaded| 00000e60 20 69 6e 74 6f 20 63 61 6e 20 6e 6f 77 20 62 65 | into can now be| 00000e70 20 62 61 73 65 64 20 6f 6e 20 74 68 65 20 66 69 | based on the fi| 00000e80 6c 65 20 70 61 74 68 20 6e 61 6d 65 2e 0a 20 20 |le path name.. | 00000e90 53 65 65 20 74 68 65 20 6b 65 79 73 20 66 69 6c |See the keys fil| 00000ea0 65 20 76 61 72 69 61 62 6c 65 73 20 26 35 30 30 |e variables &500| 00000eb0 2b 20 66 6f 72 20 65 78 61 6d 70 6c 65 73 2e 0a |+ for examples..| 00000ec0 2a 20 53 77 61 70 20 77 69 6e 64 6f 77 20 6e 6f |* Swap window no| 00000ed0 77 20 62 72 69 6e 67 73 20 74 68 65 20 77 69 6e |w brings the win| 00000ee0 64 6f 77 20 74 6f 20 74 68 65 20 66 72 6f 6e 74 |dow to the front| 00000ef0 20 28 73 65 65 20 74 68 65 20 6b 65 79 73 20 66 | (see the keys f| 00000f00 69 6c 65 29 2e 0a 2a 20 42 69 67 20 65 6e 64 69 |ile)..* Big endi| 00000f10 61 6e 20 6f 70 74 69 6f 6e 20 61 64 64 65 64 20 |an option added | 00000f20 66 6f 72 20 76 69 65 77 69 6e 67 20 41 52 4d 36 |for viewing ARM6| 00000f30 20 63 6f 64 65 20 69 6e 20 62 69 67 20 65 6e 64 | code in big end| 00000f40 69 61 6e 20 6d 6f 64 65 20 3a 2d 29 0a 2a 20 53 |ian mode :-).* S| 00000f50 65 70 61 72 61 74 65 20 6b 65 79 20 63 6f 64 65 |eparate key code| 00000f60 73 20 61 64 64 65 64 20 66 6f 72 20 74 68 65 20 |s added for the | 00000f70 6b 65 79 70 61 64 20 6b 65 79 73 2e 20 28 73 65 |keypad keys. (se| 00000f80 65 20 64 6f 63 73 2e 6b 65 79 63 6f 64 65 73 20 |e docs.keycodes | 00000f90 66 69 6c 65 29 2e 0a 2a 20 54 68 65 20 22 2a 22 |file)..* The "*"| 00000fa0 20 6f 70 65 72 61 74 6f 72 20 69 6e 20 74 68 65 | operator in the| 00000fb0 20 6b 65 79 73 20 66 69 6c 65 20 67 65 6e 65 72 | keys file gener| 00000fc0 61 6c 69 73 65 64 20 74 6f 20 63 6f 70 79 20 61 |alised to copy a| 00000fd0 6e 79 20 72 61 6e 67 65 20 6f 66 20 6b 65 79 73 |ny range of keys| 00000fe0 2e 0a 2a 20 51 75 69 74 20 6e 6f 77 20 77 6f 72 |..* Quit now wor| 00000ff0 6b 73 20 70 72 6f 70 65 72 6c 79 20 6f 6e 20 52 |ks properly on R| 00001000 4f 33 2c 20 72 65 73 74 61 72 74 69 6e 67 20 74 |O3, restarting t| 00001010 68 65 20 73 68 75 74 64 6f 77 6e 20 70 72 6f 63 |he shutdown proc| 00001020 65 64 75 72 65 20 65 74 63 0a 20 20 61 6e 64 20 |edure etc. and | 00001030 74 68 65 20 71 75 69 74 20 69 63 6f 6e 20 63 61 |the quit icon ca| 00001040 6e 20 6e 6f 77 20 62 65 20 33 44 2e 0a 2a 20 54 |n now be 3D..* T| 00001050 65 6d 70 6c 61 74 65 20 66 69 6c 65 20 63 68 6f |emplate file cho| 00001060 73 65 6e 20 61 63 63 6f 72 64 69 6e 67 20 74 6f |sen according to| 00001070 20 4f 53 20 6e 75 6d 62 65 72 20 28 73 65 65 20 | OS number (see | 00001080 21 52 75 6e 20 66 69 6c 65 29 2e 0a 2a 20 43 74 |!Run file)..* Ct| 00001090 72 6c 20 55 20 6e 6f 77 20 61 63 74 73 20 6f 6e |rl U now acts on| 000010a0 20 74 68 65 20 6b 65 79 20 69 6d 6d 65 64 69 61 | the key immedia| 000010b0 74 65 6c 79 20 28 6c 69 6b 65 20 65 6d 61 63 73 |tely (like emacs| 000010c0 29 20 75 6e 6c 65 73 73 20 74 68 65 20 6b 65 79 |) unless the key| 000010d0 20 69 73 0a 20 20 6f 6e 65 20 6f 66 3a 20 44 65 | is. one of: De| 000010e0 6c 65 74 65 2f 64 69 67 69 74 2f 52 65 74 75 72 |lete/digit/Retur| 000010f0 6e 2e 0a 2a 20 43 68 65 63 6b 20 64 61 74 65 73 |n..* Check dates| 00001100 74 61 6d 70 20 69 73 20 6e 6f 77 20 6f 6e 20 62 |tamp is now on b| 00001110 79 20 64 65 66 61 75 6c 74 2e 20 49 20 68 6f 70 |y default. I hop| 00001120 65 20 74 6f 20 68 61 76 65 20 63 75 72 65 64 20 |e to have cured | 00001130 74 68 65 20 6e 65 74 77 6f 72 6b 0a 20 20 70 72 |the network. pr| 00001140 6f 62 6c 65 6d 73 2e 20 49 66 20 6e 6f 74 20 74 |oblems. If not t| 00001150 68 65 6e 20 6c 65 74 20 6d 65 20 6b 6e 6f 77 21 |hen let me know!| 00001160 0a 2a 20 43 68 61 6e 67 65 64 20 74 68 65 20 73 |.* Changed the s| 00001170 63 72 6f 6c 6c 20 6f 66 66 73 65 74 20 63 6f 64 |croll offset cod| 00001180 65 20 73 6f 20 63 75 72 73 6f 72 20 69 73 20 6e |e so cursor is n| 00001190 6f 77 20 27 63 65 6e 74 65 72 65 64 27 20 77 68 |ow 'centered' wh| 000011a0 65 6e 20 6f 76 65 72 6c 61 70 0a 20 20 6f 63 63 |en overlap. occ| 000011b0 75 72 73 2e 0a 2a 20 41 64 64 65 64 20 27 63 6f |urs..* Added 'co| 000011c0 6e 66 69 6e 65 20 63 75 72 73 6f 72 27 20 6f 70 |nfine cursor' op| 000011d0 74 69 6f 6e 20 74 6f 20 6b 65 65 70 20 63 75 72 |tion to keep cur| 000011e0 73 6f 72 20 69 6e 20 77 69 6e 64 6f 77 20 77 68 |sor in window wh| 000011f0 65 6e 20 73 63 72 6f 6c 6c 69 6e 67 2e 0a 2a 20 |en scrolling..* | 00001200 52 65 6d 6f 76 65 64 20 6d 61 6e 79 20 6f 66 20 |Removed many of | 00001210 74 68 65 20 73 74 61 6e 64 61 72 64 20 73 65 61 |the standard sea| 00001220 72 63 68 20 6d 61 63 72 6f 73 2c 20 73 6f 20 28 |rch macros, so (| 00001230 29 27 73 20 6e 6f 77 20 6d 61 74 63 68 20 28 29 |)'s now match ()| 00001240 27 73 2e 0a 2a 20 41 64 64 65 64 20 74 68 65 20 |'s..* Added the | 00001250 27 43 20 6c 69 6b 65 27 20 73 65 61 72 63 68 20 |'C like' search | 00001260 63 6f 6d 6d 61 6e 64 73 3a 0a 09 61 6c 65 72 74 |commands:..alert| 00001270 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 | | 00001280 5c 61 20 20 20 20 20 20 20 20 20 20 20 20 20 20 |\a | 00001290 20 37 0a 09 62 61 63 6b 73 70 61 63 65 20 20 20 | 7..backspace | 000012a0 20 20 20 20 20 20 20 20 20 5c 62 20 20 20 20 20 | \b | 000012b0 20 20 20 20 20 20 20 20 20 20 38 0a 09 63 61 72 | 8..car| 000012c0 72 69 61 67 65 20 72 65 74 75 72 6e 20 20 20 20 |riage return | 000012d0 20 20 5c 72 20 20 20 20 20 20 20 20 20 20 20 20 | \r | 000012e0 20 20 20 31 33 0a 09 66 6f 72 6d 66 65 65 64 20 | 13..formfeed | 000012f0 20 20 20 20 20 20 20 20 20 20 20 20 5c 66 20 20 | \f | 00001300 20 20 20 20 20 20 20 20 20 20 20 20 20 31 32 0a | 12.| 00001310 09 68 6f 72 69 7a 6f 6e 74 61 6c 20 74 61 62 20 |.horizontal tab | 00001320 20 20 20 20 20 20 5c 74 20 20 20 20 20 20 20 20 | \t | 00001330 20 20 20 20 20 20 20 39 0a 09 6e 65 77 6c 69 6e | 9..newlin| 00001340 65 20 20 20 20 20 20 20 20 20 20 20 20 20 20 5c |e \| 00001350 6e 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 |n | 00001360 31 30 0a 09 76 65 72 74 69 63 61 6c 20 74 61 62 |10..vertical tab| 00001370 20 20 20 20 20 20 20 20 20 5c 76 20 20 20 20 20 | \v | 00001380 20 20 20 20 20 20 20 20 20 20 31 31 0a 2a 20 43 | 11.* C| 00001390 75 72 73 6f 72 20 64 6f 65 73 6e 27 74 20 66 6c |ursor doesn't fl| 000013a0 61 73 68 20 61 6e 79 20 6d 6f 72 65 20 69 66 20 |ash any more if | 000013b0 3e 3d 34 20 63 68 61 72 61 63 74 65 72 73 20 6c |>=4 characters l| 000013c0 6f 6e 67 2e 0a 2a 20 43 74 72 6c 20 55 20 74 68 |ong..* Ctrl U th| 000013d0 65 6e 20 75 70 2f 64 6f 77 6e 20 68 61 73 20 62 |en up/down has b| 000013e0 65 65 6e 20 6f 70 74 69 6d 69 73 65 64 2e 20 4e |een optimised. N| 000013f0 6f 77 20 61 63 74 73 20 69 6d 6d 65 64 69 61 74 |ow acts immediat| 00001400 65 6c 79 2e 0a 2a 20 54 68 65 20 27 77 69 6e 64 |ely..* The 'wind| 00001410 6f 77 20 77 69 64 74 68 27 20 69 73 20 6e 6f 77 |ow width' is now| 00001420 20 68 61 6e 64 6c 65 64 20 62 79 20 61 20 73 69 | handled by a si| 00001430 6e 67 6c 65 20 6d 65 6e 75 20 65 6e 74 72 79 20 |ngle menu entry | 00001440 6f 6e 20 74 68 65 20 64 69 73 70 6c 61 79 0a 20 |on the display. | 00001450 20 6d 65 6e 75 20 72 61 74 68 65 72 20 74 68 61 | menu rather tha| 00001460 6e 20 61 20 73 65 70 61 72 61 74 65 20 6f 6e 65 |n a separate one| 00001470 20 66 6f 72 20 65 61 63 68 20 6d 6f 64 65 2e 20 | for each mode. | 00001480 54 68 69 73 20 73 68 6f 75 6c 64 20 77 6f 72 6b |This should work| 00001490 20 66 6f 72 20 61 6c 6c 0a 20 20 6d 6f 64 65 73 | for all. modes| 000014a0 2e 0a 2a 20 4d 6f 72 65 20 73 65 6e 73 69 62 6c |..* More sensibl| 000014b0 65 20 65 72 72 6f 72 20 6d 65 73 73 61 67 65 73 |e error messages| 000014c0 20 67 69 76 65 6e 20 77 68 65 6e 20 61 20 66 69 | given when a fi| 000014d0 6c 65 20 69 73 20 6e 6f 74 20 6c 6f 61 64 61 62 |le is not loadab| 000014e0 6c 65 2e 0a 2a 20 56 64 75 20 32 33 20 73 63 72 |le..* Vdu 23 scr| 000014f0 6f 6c 6c 73 20 6e 6f 77 20 68 61 6e 64 6c 65 64 |olls now handled| 00001500 20 62 79 20 74 68 65 20 74 61 73 6b 77 69 6e 64 | by the taskwind| 00001510 6f 77 20 6d 6f 64 65 20 2d 20 73 6f 20 79 6f 75 |ow mode - so you| 00001520 20 63 61 6e 20 6e 6f 77 20 72 75 6e 0a 20 20 41 | can now run. A| 00001530 52 4d 42 45 20 69 6e 20 61 20 77 69 6e 64 6f 77 |RMBE in a window| 00001540 21 20 3a 2d 29 20 54 6f 20 67 65 74 20 74 68 65 |! :-) To get the| 00001550 20 66 75 6e 63 74 69 6f 6e 20 6b 65 79 73 20 28 | function keys (| 00001560 65 67 20 73 68 69 66 74 20 46 34 29 20 74 79 70 |eg shift F4) typ| 00001570 65 20 5e 51 0a 20 20 66 69 72 73 74 2e 20 54 72 |e ^Q. first. Tr| 00001580 79 20 69 74 21 0a 2a 20 22 22 73 20 61 72 65 20 |y it!.* ""s are | 00001590 74 75 72 6e 65 64 20 69 6e 74 6f 20 22 20 77 68 |turned into " wh| 000015a0 65 6e 20 61 20 63 6f 6d 6d 61 6e 64 20 73 74 72 |en a command str| 000015b0 69 6e 67 20 69 73 20 70 72 6f 63 65 73 73 65 64 |ing is processed| 000015c0 2e 0a 20 20 45 67 20 49 4e 53 45 52 54 20 22 22 |.. Eg INSERT ""| 000015d0 22 68 65 6c 6c 6f 22 22 22 2e 0a 2a 20 46 69 6c |"hello"""..* Fil| 000015e0 65 6e 61 6d 65 20 63 6f 6d 70 6c 65 74 69 6f 6e |ename completion| 000015f0 20 69 6d 70 72 6f 76 65 64 20 69 6e 20 74 68 61 | improved in tha| 00001600 74 20 61 20 27 2e 27 20 69 73 20 70 6c 61 63 65 |t a '.' is place| 00001610 64 20 61 66 74 65 72 20 74 68 65 20 6e 61 6d 65 |d after the name| 00001620 20 69 66 20 69 74 0a 20 20 69 73 20 61 20 64 69 | if it. is a di| 00001630 72 65 63 74 6f 72 79 20 61 6e 64 20 6d 61 74 63 |rectory and matc| 00001640 68 65 73 20 61 72 65 20 6e 6f 77 20 6e 6f 77 20 |hes are now now | 00001650 63 61 73 65 20 73 65 6e 73 69 74 69 76 65 2e 20 |case sensitive. | 00001660 49 20 68 61 76 65 20 6d 61 6a 6f 72 0a 20 20 69 |I have major. i| 00001670 6d 70 72 6f 76 65 6d 65 6e 74 73 20 70 6c 61 6e |mprovements plan| 00001680 6e 65 64 20 2e 2e 0a 2a 20 57 61 72 6e 69 6e 67 |ned ...* Warning| 00001690 20 69 73 20 67 69 76 65 6e 20 69 6e 20 74 68 65 | is given in the| 000016a0 20 6d 69 6e 69 62 75 66 66 65 72 20 69 6e 73 74 | minibuffer inst| 000016b0 65 61 64 20 6f 66 20 61 6e 20 65 72 72 6f 72 20 |ead of an error | 000016c0 62 65 69 6e 67 20 67 65 6e 65 72 61 74 65 64 20 |being generated | 000016d0 69 66 0a 20 20 79 6f 75 20 74 79 70 65 20 69 6e |if. you type in| 000016e0 20 61 20 72 65 61 64 20 6f 6e 6c 79 20 62 75 66 | a read only buf| 000016f0 66 65 72 2e 0a 2a 20 4d 69 6e 69 62 75 66 66 65 |fer..* Minibuffe| 00001700 72 20 6e 6f 77 20 67 6f 65 73 20 61 77 61 79 20 |r now goes away | 00001710 6f 6e 20 61 20 6e 65 77 20 6b 65 79 70 72 65 73 |on a new keypres| 00001720 73 2e 0a 2a 20 54 68 65 72 65 20 69 73 20 61 20 |s..* There is a | 00001730 63 6f 6d 6d 61 6e 64 20 74 6f 20 63 6f 70 79 20 |command to copy | 00001740 61 20 77 69 6e 64 6f 77 73 20 6f 70 74 69 6f 6e |a windows option| 00001750 73 20 74 6f 20 62 65 20 74 68 65 20 64 65 66 61 |s to be the defa| 00001760 75 6c 74 20 6f 6e 65 73 2c 20 74 68 6f 75 67 68 |ult ones, though| 00001770 0a 20 20 69 74 20 64 6f 65 73 6e 27 74 20 68 61 |. it doesn't ha| 00001780 6e 64 6c 65 20 6d 6f 64 65 20 6f 70 74 69 6f 6e |ndle mode option| 00001790 73 20 79 65 74 20 28 73 65 65 20 74 68 65 20 6d |s yet (see the m| 000017a0 69 73 63 20 6d 65 6e 75 29 2e 0a 2a 20 54 61 73 |isc menu)..* Tas| 000017b0 6b 77 69 6e 64 6f 77 20 6d 6f 64 65 20 63 61 6e |kwindow mode can| 000017c0 20 6e 6f 77 20 63 6f 70 79 20 6c 61 72 67 65 20 | now copy large | 000017d0 73 65 6c 65 63 74 69 6f 6e 73 20 74 6f 20 74 68 |selections to th| 000017e0 65 20 63 75 72 72 65 6e 74 20 69 6e 70 75 74 0a |e current input.| 000017f0 20 20 70 72 6f 70 65 72 6c 79 2e 20 49 27 6d 20 | properly. I'm | 00001800 61 66 72 61 69 64 20 6d 6f 76 65 20 28 63 56 29 |afraid move (cV)| 00001810 20 64 6f 65 73 6e 27 74 20 77 6f 72 6b 20 77 65 | doesn't work we| 00001820 6c 6c 20 6f 6e 20 3e 38 30 20 62 79 74 65 20 6f |ll on >80 byte o| 00001830 66 20 74 65 78 74 2e 20 55 73 65 0a 20 20 63 6f |f text. Use. co| 00001840 70 79 20 28 63 43 29 20 69 6e 73 74 65 61 64 2e |py (cC) instead.| 00001850 0a 2a 20 43 61 6e 20 6e 6f 77 20 72 65 73 69 7a |.* Can now resiz| 00001860 65 20 74 61 73 6b 20 77 69 6e 64 6f 77 20 73 63 |e task window sc| 00001870 72 65 65 6e 20 77 68 69 6c 65 20 72 75 6e 6e 69 |reen while runni| 00001880 6e 67 2e 0a 2a 20 51 75 69 63 6b 70 72 69 6e 74 |ng..* Quickprint| 00001890 20 73 68 6f 75 6c 64 20 6e 6f 77 20 6c 65 74 20 | should now let | 000018a0 66 6f 72 6d 20 66 65 65 64 73 20 28 61 73 63 69 |form feeds (asci| 000018b0 69 20 31 32 29 20 74 68 72 6f 75 67 68 2e 0a 2a |i 12) through..*| 000018c0 20 41 6d 75 2f 4d 61 6b 65 20 74 68 72 6f 77 62 | Amu/Make throwb| 000018d0 61 63 6b 20 61 6c 6c 20 67 6f 65 73 20 69 6e 74 |ack all goes int| 000018e0 6f 20 6f 6e 65 20 66 69 6c 65 20 69 6e 73 74 65 |o one file inste| 000018f0 61 64 20 6f 66 20 6f 70 65 6e 69 6e 67 20 6d 75 |ad of opening mu| 00001900 6c 74 69 70 6c 65 0a 20 20 66 69 6c 65 73 2e 0a |ltiple. files..| 00001910 0a 44 6f 63 73 20 63 68 61 6e 67 65 73 3a 0a 2a |.Docs changes:.*| 00001920 20 4b 65 79 63 6f 64 65 73 20 66 69 6c 65 20 63 | Keycodes file c| 00001930 72 65 61 74 65 64 2e 0a 2a 20 41 20 6d 6f 64 65 |reated..* A mode| 00001940 73 20 77 6f 72 64 20 6f 66 20 77 6f 72 6b 73 70 |s word of worksp| 00001950 61 63 65 20 63 61 6e 20 6e 6f 77 20 70 6f 69 6e |ace can now poin| 00001960 74 20 74 6f 20 61 20 62 6c 6f 63 6b 20 6f 66 20 |t to a block of | 00001970 77 6f 72 6b 73 70 61 63 65 2e 0a 2a 20 41 64 64 |workspace..* Add| 00001980 65 64 20 65 5f 70 72 65 76 6c 69 6e 65 20 65 6e |ed e_prevline en| 00001990 74 72 79 20 70 6f 69 6e 74 20 73 6f 20 63 61 6e |try point so can| 000019a0 20 73 74 61 72 74 20 73 63 72 65 65 6e 20 75 70 | start screen up| 000019b0 64 61 74 65 73 20 61 74 20 74 68 65 20 73 74 61 |dates at the sta| 000019c0 72 74 20 6f 66 0a 20 20 61 20 6c 69 6e 65 2e 0a |rt of. a line..| 000019d0 2a 20 43 6f 6e 66 69 67 20 66 69 6c 65 20 72 65 |* Config file re| 000019e0 64 65 73 69 67 6e 65 64 20 74 6f 20 62 65 20 69 |designed to be i| 000019f0 6e 20 6d 6f 64 75 6c 61 72 20 66 6f 72 6d 20 61 |n modular form a| 00001a00 6e 64 20 64 65 70 65 6e 64 20 6f 6e 20 6d 6f 64 |nd depend on mod| 00001a10 65 20 6e 61 6d 65 20 72 61 74 68 65 72 0a 20 20 |e name rather. | 00001a20 74 68 61 6e 20 6d 6f 64 65 20 6e 75 6d 62 65 72 |than mode number| 00001a30 2e 0a 0a 4d 69 73 63 20 62 75 67 73 20 61 6e 64 |...Misc bugs and| 00001a40 20 74 68 69 6e 67 73 3a 0a 2a 20 49 20 68 61 64 | things:.* I had| 00001a50 20 72 65 70 6f 72 74 73 20 74 68 61 74 20 76 65 | reports that ve| 00001a60 72 73 69 6f 6e 20 31 2e 30 30 20 64 69 64 20 6e |rsion 1.00 did n| 00001a70 6f 74 20 77 6f 72 6b 20 6f 6e 20 52 69 73 63 20 |ot work on Risc | 00001a80 4f 53 20 33 2c 20 77 68 65 72 65 20 61 73 20 30 |OS 3, where as 0| 00001a90 2e 39 0a 20 20 64 69 64 2e 20 54 68 69 73 20 70 |.9. did. This p| 00001aa0 72 6f 62 6c 65 6d 20 69 73 20 65 61 73 69 6c 79 |roblem is easily| 00001ab0 20 66 69 78 65 64 20 62 79 20 63 68 61 6e 67 69 | fixed by changi| 00001ac0 6e 67 20 74 68 65 20 6c 69 6e 65 20 69 6e 20 74 |ng the line in t| 00001ad0 68 65 20 21 52 75 6e 20 66 69 6c 65 0a 20 20 77 |he !Run file. w| 00001ae0 68 69 63 68 20 63 68 65 63 6b 73 20 66 6f 72 20 |hich checks for | 00001af0 52 69 73 63 20 4f 73 20 33 20 74 6f 20 74 65 73 |Risc Os 3 to tes| 00001b00 74 20 66 6f 72 20 33 2e 31 2c 20 61 73 20 49 20 |t for 3.1, as I | 00001b10 68 61 76 65 20 64 6f 6e 65 2e 20 49 66 20 74 68 |have done. If th| 00001b20 65 72 65 20 61 72 65 0a 20 20 73 74 69 6c 6c 20 |ere are. still | 00001b30 70 72 6f 62 6c 65 6d 73 20 74 68 65 6e 20 63 6f |problems then co| 00001b40 6e 74 61 63 74 20 6d 65 20 69 6d 6d 65 64 69 61 |ntact me immedia| 00001b50 74 65 6c 79 2e 0a 2a 20 54 68 65 72 65 20 77 61 |tely..* There wa| 00001b60 73 20 61 20 62 75 67 20 69 6e 20 76 31 2e 30 20 |s a bug in v1.0 | 00001b70 74 68 61 74 20 6d 65 61 6e 74 20 63 6f 6d 6d 61 |that meant comma| 00001b80 6e 64 73 20 63 68 61 69 6e 65 64 20 74 6f 67 65 |nds chained toge| 00001b90 74 68 65 72 20 77 69 74 68 20 73 70 61 63 65 73 |ther with spaces| 00001ba0 0a 20 20 72 6f 75 6e 64 20 74 68 65 20 63 6f 6c |. round the col| 00001bb0 6f 6e 20 65 67 20 22 4c 45 46 54 20 3a 20 52 49 |on eg "LEFT : RI| 00001bc0 47 48 54 22 20 64 69 64 6e 27 74 20 77 6f 72 6b |GHT" didn't work| 00001bd0 2e 20 54 68 69 73 20 68 61 73 20 62 65 65 6e 20 |. This has been | 00001be0 66 69 78 65 64 2e 0a 2a 20 46 61 6e 63 79 20 70 |fixed..* Fancy p| 00001bf0 72 69 6e 74 20 73 74 69 6c 6c 20 77 6f 6e 27 74 |rint still won't| 00001c00 20 77 6f 72 6b 20 77 69 74 68 20 74 68 65 20 74 | work with the t| 00001c10 75 72 62 6f 64 72 69 76 65 72 73 20 28 70 72 6f |urbodrivers (pro| 00001c20 64 75 63 65 73 20 61 20 70 61 67 65 20 6f 66 0a |duces a page of.| 00001c30 20 20 62 6c 61 63 6b 29 2e 20 49 20 64 6f 6e 27 | black). I don'| 00001c40 74 20 6b 6e 6f 77 20 77 68 79 21 0a 0a 54 68 61 |t know why!..Tha| 00001c50 6e 6b 73 20 74 6f 20 74 68 65 20 66 6f 6c 6c 6f |nks to the follo| 00001c60 77 69 6e 67 20 66 6f 72 20 68 65 6c 70 2f 73 75 |wing for help/su| 00001c70 67 67 65 73 74 69 6f 6e 73 2f 64 6f 6e 61 74 69 |ggestions/donati| 00001c80 6f 6e 73 2f 62 75 67 20 72 65 70 6f 72 74 73 3a |ons/bug reports:| 00001c90 0a 0a 50 2e 41 6c 6c 65 6e 2c 20 4f 2e 42 65 74 |..P.Allen, O.Bet| 00001ca0 74 73 2c 20 43 2e 42 6f 6f 6b 65 72 2c 20 4d 2e |ts, C.Booker, M.| 00001cb0 42 6f 72 63 68 65 72 64 73 2c 20 54 2e 42 72 6f |Borcherds, T.Bro| 00001cc0 77 73 65 2c 20 42 2e 42 72 75 6e 73 77 69 63 6b |wse, B.Brunswick| 00001cd0 2c 20 4e 2e 20 43 61 72 73 6f 6e 2c 0a 44 2e 43 |, N. Carson,.D.C| 00001ce0 61 73 73 2c 20 43 2e 43 65 70 75 72 6e 65 65 6b |ass, C.Cepurneek| 00001cf0 2c 20 50 2e 43 6f 6c 6d 65 72 2c 20 41 2e 43 6f |, P.Colmer, A.Co| 00001d00 72 65 79 2c 20 4d 2e 43 6f 72 6c 65 79 2c 20 4a |rey, M.Corley, J| 00001d10 2e 43 6f 78 68 65 61 64 2c 20 4e 2e 43 72 61 69 |.Coxhead, N.Crai| 00001d20 67 2d 57 6f 6f 64 2c 0a 47 2e 43 72 6f 77 2c 20 |g-Wood,.G.Crow, | 00001d30 52 2e 44 61 72 6c 69 6e 67 74 6f 6e 2c 20 4a 2e |R.Darlington, J.| 00001d40 44 61 76 69 64 73 6f 6e 2c 20 4d 2e 44 6f 72 65 |Davidson, M.Dore| 00001d50 79 2c 20 4d 2e 45 62 6f 75 72 6e 65 2c 20 4a 2e |y, M.Ebourne, J.| 00001d60 46 72 65 65 6d 61 6e 2c 20 4d 2e 47 65 64 64 65 |Freeman, M.Gedde| 00001d70 73 2c 0a 49 2e 47 69 62 6c 69 6e 2c 20 44 2e 47 |s,.I.Giblin, D.G| 00001d80 69 6c 62 65 72 74 2c 20 53 2e 47 6c 61 73 73 2c |ilbert, S.Glass,| 00001d90 20 5a 2e 47 75 6e 6e 61 72 2c 20 52 2e 48 61 6c | Z.Gunnar, R.Hal| 00001da0 6c 61 73 2c 20 42 2e 48 61 72 72 69 73 2c 20 50 |las, B.Harris, P| 00001db0 2e 48 61 7a 65 6c 2c 0a 44 2e 48 6f 6c 64 65 6e |.Hazel,.D.Holden| 00001dc0 2c 20 44 2e 48 6f 77 65 2c 20 4d 2e 48 75 67 65 |, D.Howe, M.Huge| 00001dd0 73 2c 20 52 2e 4a 6f 68 6e 73 6f 6e 2c 20 48 2e |s, R.Johnson, H.| 00001de0 4b 6c 69 6e 67 73 70 6f 68 72 2c 20 43 2e 4c 61 |Klingspohr, C.La| 00001df0 74 68 61 6d 2c 20 44 2e 4c 61 79 66 69 65 6c 64 |tham, D.Layfield| 00001e00 2c 0a 47 2e 4c 65 65 2c 20 47 2e 53 2e 4c 6f 6e |,.G.Lee, G.S.Lon| 00001e10 67 20 3a 2d 29 2c 20 50 2e 4c 6f 6e 67 2c 20 4d |g :-), P.Long, M| 00001e20 2e 4c 75 6b 61 74 2c 20 47 2e 4d 63 43 61 75 67 |.Lukat, G.McCaug| 00001e30 68 61 6e 2c 20 41 2e 4d 63 4d 75 72 72 79 2c 20 |han, A.McMurry, | 00001e40 50 2e 4d 63 54 69 65 72 6e 61 6e 2c 0a 41 2e 4d |P.McTiernan,.A.M| 00001e50 65 72 72 69 74 74 2c 20 50 2e 4d 6f 6f 72 65 2c |erritt, P.Moore,| 00001e60 20 44 2e 4d 75 72 70 68 79 2c 20 45 2e 4e 61 69 | D.Murphy, E.Nai| 00001e70 73 68 2c 20 4a 2e 4f 76 65 73 65 6e 2c 20 49 2e |sh, J.Ovesen, I.| 00001e80 50 61 6c 6d 65 72 2c 20 4f 2e 52 65 69 6e 65 72 |Palmer, O.Reiner| 00001e90 74 2c 20 41 2e 52 61 61 62 2c 0a 48 2e 52 6f 67 |t, A.Raab,.H.Rog| 00001ea0 65 72 73 2c 20 42 2e 53 63 61 74 74 65 72 67 6f |ers, B.Scattergo| 00001eb0 6f 64 2c 20 4b 2e 53 63 68 6c 69 63 68 74 69 6e |od, K.Schlichtin| 00001ec0 67 2c 20 4a 2e 53 6d 69 74 68 2c 20 4e 2e 41 2e |g, J.Smith, N.A.| 00001ed0 53 6d 69 74 68 2c 20 52 2e 4c 2e 53 6d 69 74 68 |Smith, R.L.Smith| 00001ee0 2c 20 41 2e 0a 53 6f 75 74 68 67 61 74 65 2c 20 |, A..Southgate, | 00001ef0 58 2e 53 79 6e 74 69 78 61 6b 69 73 2c 20 20 47 |X.Syntixakis, G| 00001f00 2e 54 61 79 6c 6f 72 2c 20 41 2e 20 54 68 6f 75 |.Taylor, A. Thou| 00001f10 6b 79 64 69 64 65 73 2c 20 4c 2e 54 6f 6d 6d 61 |kydides, L.Tomma| 00001f20 73 6f 2c 20 43 2e 54 75 72 6e 62 75 6c 6c 2c 0a |so, C.Turnbull,.| 00001f30 45 2e 76 61 6e 20 64 65 20 50 6f 6c 2c 20 4a 2e |E.van de Pol, J.| 00001f40 56 65 6e 65 73 73 2c 20 4a 2e 57 61 6c 6c 61 63 |Veness, J.Wallac| 00001f50 65 2c 20 52 2e 57 61 74 74 73 2c 20 50 2e 57 68 |e, R.Watts, P.Wh| 00001f60 65 61 74 6c 65 79 2c 20 54 2e 57 69 6c 6c 65 6d |eatley, T.Willem| 00001f70 73 65 2c 0a 4d 2e 57 69 6c 6c 69 61 6d 73 2c 20 |se,.M.Williams, | 00001f80 52 2e 57 69 6c 73 6f 6e 2c 20 4d 2e 57 6f 6f 64 |R.Wilson, M.Wood| 00001f90 69 6e 67 2c 20 44 2e 58 61 6e 74 68 61 6b 69 73 |ing, D.Xanthakis| 00001fa0 2c 20 44 2e 59 75 6c 65 2c 0a 0a 61 6e 64 20 61 |, D.Yule,..and a| 00001fb0 6c 6c 20 6d 65 6d 62 65 72 73 20 6f 66 20 74 68 |ll members of th| 00001fc0 65 20 4f 78 66 6f 72 64 20 41 72 63 20 55 73 65 |e Oxford Arc Use| 00001fd0 72 20 47 72 6f 75 70 2e 0a 0a 50 72 6f 70 6f 73 |r Group...Propos| 00001fe0 65 64 20 63 68 61 6e 67 65 73 20 31 2e 31 30 2d |ed changes 1.10-| 00001ff0 31 2e 32 30 0a 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d |1.20.-----------| 00002000 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 0a |---------------.| 00002010 0a 56 65 72 73 69 6f 6e 20 31 2e 32 30 20 73 68 |.Version 1.20 sh| 00002020 6f 75 6c 64 20 62 65 20 72 65 6c 65 61 73 65 64 |ould be released| 00002030 20 73 6f 6d 65 74 69 6d 65 20 6c 61 74 65 20 73 | sometime late s| 00002040 75 6d 6d 65 72 2c 20 68 6f 70 65 66 75 6c 6c 79 |ummer, hopefully| 00002050 20 6c 61 74 65 0a 53 65 70 74 65 6d 62 65 72 2c | late.September,| 00002060 20 64 65 70 65 6e 64 69 6e 67 20 6f 6e 20 6d 79 | depending on my| 00002070 20 77 6f 72 6b 6c 6f 61 64 2e 20 49 27 6d 20 73 | workload. I'm s| 00002080 6f 72 72 79 20 74 68 69 73 20 72 65 6c 65 61 73 |orry this releas| 00002090 65 20 77 61 73 20 64 65 6c 61 79 65 64 20 62 75 |e was delayed bu| 000020a0 74 0a 69 74 20 77 61 73 20 61 20 62 69 74 20 73 |t.it was a bit s| 000020b0 69 6c 6c 79 20 6f 66 20 6d 65 20 74 6f 20 70 75 |illy of me to pu| 000020c0 74 20 74 68 65 20 72 65 6c 65 61 73 65 20 64 61 |t the release da| 000020d0 74 65 20 64 75 72 69 6e 67 20 74 68 65 20 73 65 |te during the se| 000020e0 63 6f 6e 64 20 68 61 6c 66 20 6f 66 0a 74 68 65 |cond half of.the| 000020f0 20 75 6e 69 76 65 72 73 69 74 79 20 74 65 72 6d | university term| 00002100 21 20 54 68 69 6e 67 73 20 77 65 72 65 6e 27 74 |! Things weren't| 00002110 20 68 65 6c 70 65 64 20 62 79 20 6f 75 72 20 6e | helped by our n| 00002120 65 74 77 6f 72 6b 20 67 6f 69 6e 67 20 64 6f 77 |etwork going dow| 00002130 6e 20 2d 0a 61 70 6f 6c 6f 67 69 65 73 20 74 6f |n -.apologies to| 00002140 20 61 6e 79 6f 6e 65 20 77 68 6f 27 73 20 6d 61 | anyone who's ma| 00002150 69 6c 20 67 6f 74 20 6c 6f 73 74 2e 0a 0a 54 68 |il got lost...Th| 00002160 65 72 65 20 61 72 65 20 73 65 76 65 72 61 6c 20 |ere are several | 00002170 6d 61 6a 6f 72 20 74 68 69 6e 67 73 20 49 20 6e |major things I n| 00002180 65 65 64 20 74 6f 20 64 6f 3a 0a 0a 28 31 29 20 |eed to do:..(1) | 00002190 43 68 61 6e 67 65 20 6d 79 20 61 73 73 65 6d 62 |Change my assemb| 000021a0 6c 65 72 2e 20 45 64 69 74 69 6e 67 20 61 20 38 |ler. Editing a 8| 000021b0 35 30 6b 20 42 41 53 49 43 20 66 69 6c 65 20 77 |50k BASIC file w| 000021c0 68 69 63 68 20 69 73 20 6e 75 6d 62 65 72 65 64 |hich is numbered| 000021d0 20 69 6e 20 32 27 73 0a 20 20 20 20 62 65 63 61 | in 2's. beca| 000021e0 75 73 65 20 74 68 65 72 65 20 61 72 65 6e 27 74 |use there aren't| 000021f0 20 65 6e 6f 75 67 68 20 6c 69 6e 65 20 6e 75 6d | enough line num| 00002200 62 65 72 73 20 74 6f 20 6e 75 6d 62 65 72 20 69 |bers to number i| 00002210 74 20 69 6e 20 33 27 73 20 28 32 38 2c 34 30 30 |t in 3's (28,400| 00002220 0a 20 20 20 20 6c 69 6e 65 73 20 61 74 6d 29 20 |. lines atm) | 00002230 69 73 20 67 65 74 74 69 6e 67 20 62 65 79 6f 6e |is getting beyon| 00002240 64 20 61 20 6a 6f 6b 65 21 0a 28 32 29 20 52 65 |d a joke!.(2) Re| 00002250 77 72 69 74 65 20 74 68 65 20 6d 65 6e 75 20 63 |write the menu c| 00002260 6f 64 65 20 73 6f 20 74 68 61 74 20 65 61 63 68 |ode so that each| 00002270 20 6d 65 6e 75 20 65 6e 74 72 79 20 6a 75 73 74 | menu entry just| 00002280 20 72 75 6e 73 20 61 20 5a 61 70 20 63 6f 6d 6d | runs a Zap comm| 00002290 61 6e 64 0a 20 20 20 20 61 6e 64 20 6d 65 6e 75 |and. and menu| 000022a0 73 20 61 72 65 20 63 6f 6e 66 69 67 75 72 61 62 |s are configurab| 000022b0 6c 65 2e 20 54 68 69 73 20 77 69 6c 6c 20 73 61 |le. This will sa| 000022c0 76 65 20 73 70 61 63 65 20 61 6e 64 20 6d 61 6b |ve space and mak| 000022d0 65 20 74 68 69 6e 67 73 20 6d 6f 72 65 0a 20 20 |e things more. | 000022e0 20 20 76 65 72 73 61 74 69 6c 65 2e 20 49 20 63 | versatile. I c| 000022f0 61 6e 20 61 6c 73 6f 20 6d 65 72 67 65 20 48 65 |an also merge He| 00002300 6c 70 44 61 74 61 20 77 69 74 68 20 43 6f 6d 6d |lpData with Comm| 00002310 61 6e 64 73 20 73 6f 20 6e 6f 74 20 64 75 70 6c |ands so not dupl| 00002320 69 63 61 74 69 6e 67 0a 20 20 20 20 65 76 65 72 |icating. ever| 00002330 79 74 68 69 6e 67 20 74 77 69 63 65 2e 0a 28 33 |ything twice..(3| 00002340 29 20 41 64 64 20 61 20 67 6c 6f 62 61 6c 20 27 |) Add a global '| 00002350 46 6f 6c 64 27 20 6f 70 74 69 6f 6e 20 74 6f 20 |Fold' option to | 00002360 74 75 72 6e 20 65 76 65 72 79 20 74 65 78 74 2d |turn every text-| 00002370 6c 69 6b 65 20 6d 6f 64 65 20 69 6e 74 6f 20 61 |like mode into a| 00002380 20 66 6f 6c 64 69 6e 67 0a 20 20 20 20 6d 6f 64 | folding. mod| 00002390 65 2e 20 54 68 69 73 20 70 72 6f 62 61 62 6c 79 |e. This probably| 000023a0 20 77 6f 6e 27 74 20 62 65 20 66 69 6e 69 73 68 | won't be finish| 000023b0 65 64 20 62 79 20 74 68 65 20 6e 65 78 74 20 72 |ed by the next r| 000023c0 65 6c 65 61 73 65 2e 0a 0a 53 6d 61 6c 6c 65 72 |elease...Smaller| 000023d0 20 74 68 69 6e 67 73 20 74 6f 20 62 65 20 64 6f | things to be do| 000023e0 6e 65 3a 20 28 6d 6f 73 74 20 6f 66 20 74 68 65 |ne: (most of the| 000023f0 6d 20 66 72 6f 6d 20 74 68 65 20 76 73 6e 20 31 |m from the vsn 1| 00002400 20 63 68 61 6e 67 65 73 20 66 69 6c 65 20 3a 2d | changes file :-| 00002410 28 20 29 0a 0a 2a 20 32 34 20 62 69 74 20 63 6f |( )..* 24 bit co| 00002420 6c 6f 75 72 20 63 68 6f 6f 73 69 6e 67 20 69 6e |lour choosing in| 00002430 73 74 65 61 64 20 6f 66 20 74 68 65 20 6d 65 6e |stead of the men| 00002440 75 20 6f 66 20 77 69 6d 70 20 63 6f 6c 6f 75 72 |u of wimp colour| 00002450 73 20 75 73 65 64 20 61 74 6d 2e 20 41 6c 6c 0a |s used atm. All.| 00002460 20 20 74 68 65 20 72 65 64 72 61 77 20 63 6f 64 | the redraw cod| 00002470 65 20 69 73 20 32 34 20 62 69 74 20 6e 6f 77 2c |e is 24 bit now,| 00002480 20 49 20 6a 75 73 74 20 68 61 76 65 20 74 6f 20 | I just have to | 00002490 63 68 61 6e 67 65 20 74 68 65 20 63 6f 6c 6f 75 |change the colou| 000024a0 72 20 73 65 6c 65 63 74 6f 72 2e 0a 2a 20 41 64 |r selector..* Ad| 000024b0 6a 75 73 74 20 64 72 61 67 20 66 6f 72 20 72 65 |just drag for re| 000024c0 73 69 7a 69 6e 67 20 6d 69 6e 69 62 75 66 66 65 |sizing minibuffe| 000024d0 72 2e 0a 2a 20 41 20 43 52 3c 2d 3e 4c 46 20 63 |r..* A CR<->LF c| 000024e0 6f 6d 6d 61 6e 64 2e 0a 2a 20 52 65 63 6f 6e 6e |ommand..* Reconn| 000024f0 65 63 74 20 74 61 73 6b 77 69 6e 64 6f 77 20 63 |ect taskwindow c| 00002500 6f 6d 6d 61 6e 64 2e 0a 2a 20 4f 70 74 69 6f 6e |ommand..* Option| 00002510 20 74 6f 20 6c 6f 61 64 20 64 75 61 6c 20 65 64 | to load dual ed| 00002520 69 74 73 20 69 6e 20 52 65 61 64 20 4f 6e 6c 79 |its in Read Only| 00002530 20 6d 6f 64 65 2e 0a 2a 20 43 6f 6d 70 72 65 73 | mode..* Compres| 00002540 73 20 74 61 62 73 20 28 6e 6f 74 20 69 6e 73 69 |s tabs (not insi| 00002550 64 65 20 73 74 72 69 6e 67 73 29 20 63 6f 6d 6d |de strings) comm| 00002560 61 6e 64 2e 0a 2a 20 41 64 6a 75 73 74 20 6f 6e |and..* Adjust on| 00002570 20 74 69 74 6c 65 20 6f 66 20 66 69 6c 65 20 72 | title of file r| 00002580 65 6d 6f 76 65 73 20 77 68 6f 6c 65 20 74 68 72 |emoves whole thr| 00002590 6f 77 62 61 63 6b 20 6f 66 20 74 68 61 74 20 66 |owback of that f| 000025a0 69 6c 65 2e 0a 2a 20 46 75 6e 63 74 69 6f 6e 20 |ile..* Function | 000025b0 74 6f 20 65 78 70 61 6e 64 20 74 61 62 73 20 74 |to expand tabs t| 000025c0 6f 20 73 70 61 63 65 73 2e 0a 2a 20 42 72 61 63 |o spaces..* Brac| 000025d0 6b 65 74 20 6d 61 74 63 68 69 6e 67 20 69 6e 20 |ket matching in | 000025e0 62 61 73 69 63 20 6d 6f 64 65 2e 0a 2a 20 52 61 |basic mode..* Ra| 000025f0 77 64 61 74 61 20 28 74 79 70 65 20 26 46 46 31 |wdata (type &FF1| 00002600 29 20 6d 6f 64 65 20 74 6f 20 68 61 6e 64 6c 65 |) mode to handle| 00002610 20 43 52 4c 46 2f 4c 46 43 52 20 6c 69 6e 65 20 | CRLF/LFCR line | 00002620 65 6e 64 69 6e 67 73 2e 0a 2a 20 48 61 76 65 20 |endings..* Have | 00002630 61 20 6f 70 74 69 6f 6e 20 74 6f 20 72 75 6e 20 |a option to run | 00002640 61 20 6c 69 73 74 20 6f 66 20 5a 61 70 20 63 6f |a list of Zap co| 00002650 6d 6d 61 6e 64 73 20 69 6e 20 74 68 65 20 66 69 |mmands in the fi| 00002660 72 73 74 20 66 65 77 20 6c 69 6e 65 73 20 6f 66 |rst few lines of| 00002670 20 61 0a 20 20 74 65 78 74 20 66 69 6c 65 2c 20 | a. text file, | 00002680 77 68 65 6e 20 74 68 65 20 66 69 6c 65 20 69 73 |when the file is| 00002690 20 6c 6f 61 64 65 64 2e 0a 2a 20 49 6e 64 69 63 | loaded..* Indic| 000026a0 61 74 69 6f 6e 20 69 6e 20 74 69 74 6c 65 20 77 |ation in title w| 000026b0 68 65 6e 20 74 61 73 6b 77 69 6e 64 6f 77 20 73 |hen taskwindow s| 000026c0 74 69 6c 6c 20 6c 69 6e 6b 65 64 2e 0a 2a 20 53 |till linked..* S| 000026d0 65 61 72 63 68 20 61 6e 64 20 72 65 70 6c 61 63 |earch and replac| 000026e0 65 20 63 6f 6e 66 69 6e 65 64 20 74 6f 20 72 65 |e confined to re| 000026f0 67 69 6f 6e 2e 0a 2a 20 43 6f 75 6e 74 20 6f 70 |gion..* Count op| 00002700 74 69 6f 6e 20 69 6e 20 73 65 61 72 63 68 20 61 |tion in search a| 00002710 6e 64 20 72 65 70 6c 61 63 65 2e 0a 2a 20 55 70 |nd replace..* Up| 00002720 64 61 74 65 20 63 75 72 73 6f 72 20 70 6f 73 6e |date cursor posn| 00002730 20 77 68 65 6e 20 47 6f 74 6f 42 6f 78 20 6f 70 | when GotoBox op| 00002740 65 6e 2e 0a 2a 20 45 64 69 74 20 74 61 62 73 20 |en..* Edit tabs | 00002750 73 68 6f 75 6c 64 20 73 74 6f 70 20 61 74 20 28 |should stop at (| 00002760 27 73 20 28 61 6c 73 6f 20 77 6f 72 64 20 70 6c |'s (also word pl| 00002770 75 73 2f 6d 69 6e 75 73 29 2e 0a 2a 20 43 6f 6e |us/minus)..* Con| 00002780 66 69 67 75 72 61 62 6c 65 20 70 69 78 65 6c 20 |figurable pixel | 00002790 69 6e 64 65 6e 74 20 66 72 6f 6d 20 6c 68 73 20 |indent from lhs | 000027a0 6f 66 20 77 69 6e 64 6f 77 2e 0a 2a 20 56 61 72 |of window..* Var| 000027b0 69 61 62 6c 65 20 6c 69 6e 65 20 6e 75 6d 62 65 |iable line numbe| 000027c0 72 20 63 6f 6c 75 6d 6e 20 77 69 64 74 68 2e 0a |r column width..| 000027d0 2a 20 43 79 63 6c 65 20 77 69 6e 64 6f 77 20 28 |* Cycle window (| 000027e0 61 6c 6c 20 77 69 6e 64 6f 77 29 20 2b 20 6d 6f |all window) + mo| 000027f0 76 65 20 6e 65 78 74 20 6f 6e 65 20 74 6f 20 74 |ve next one to t| 00002800 6f 70 20 63 6f 6d 6d 61 6e 64 73 2e 0a 2a 20 43 |op commands..* C| 00002810 72 65 61 74 65 20 61 20 6e 65 77 20 77 69 6e 64 |reate a new wind| 00002820 6f 77 20 69 6e 20 6d 6f 64 65 2f 66 69 6c 65 74 |ow in mode/filet| 00002830 79 70 65 20 76 69 61 20 6d 69 6e 69 62 75 66 66 |ype via minibuff| 00002840 65 72 2e 0a 2a 20 41 6c 69 61 73 65 73 21 20 28 |er..* Aliases! (| 00002850 66 6f 72 20 63 6f 6d 6d 61 6e 64 73 2c 20 65 67 |for commands, eg| 00002860 20 4c 45 54 20 45 4d 41 43 53 3d 42 41 53 45 4d | LET EMACS=BASEM| 00002870 41 50 20 31 20 74 79 70 65 20 6f 66 20 74 68 69 |AP 1 type of thi| 00002880 6e 67 29 2e 0a 2a 20 53 65 70 61 72 61 74 65 20 |ng)..* Separate | 00002890 63 6f 6d 6d 61 6e 64 73 20 66 6f 72 20 73 77 61 |commands for swa| 000028a0 70 20 63 61 73 65 20 6f 66 20 61 20 63 68 61 72 |p case of a char| 000028b0 20 61 6e 64 20 72 65 67 69 6f 6e 3f 0a 2a 20 4f | and region?.* O| 000028c0 70 74 69 6f 6e 20 74 6f 20 68 61 76 65 20 74 68 |ption to have th| 000028d0 65 20 67 6f 74 6f 2f 73 65 61 72 63 68 20 64 62 |e goto/search db| 000028e0 6f 78 65 73 20 62 65 68 61 76 69 6e 67 20 61 73 |oxes behaving as| 000028f0 20 6d 65 73 73 79 64 6f 73 20 2d 20 69 65 2c 20 | messydos - ie, | 00002900 66 69 72 73 74 0a 20 20 70 75 74 20 74 68 65 20 |first. put the | 00002910 6f 6c 64 20 63 68 6f 69 63 65 20 69 6e 20 74 68 |old choice in th| 00002920 65 20 64 62 6f 78 2c 20 62 75 74 20 72 65 6d 6f |e dbox, but remo| 00002930 76 65 20 69 74 20 69 66 20 74 68 65 20 75 73 65 |ve it if the use| 00002940 72 20 73 74 61 72 74 73 20 74 6f 20 74 79 70 65 |r starts to type| 00002950 0a 20 20 6f 76 65 72 20 69 74 2e 0a 2a 20 53 65 |. over it..* Se| 00002960 61 72 63 68 20 61 73 20 79 6f 75 20 74 79 70 65 |arch as you type| 00002970 20 77 72 61 70 70 69 6e 67 20 72 6f 75 6e 64 20 | wrapping round | 00002980 61 20 6c 61 20 65 6d 61 63 73 2e 0a 2a 20 47 72 |a la emacs..* Gr| 00002990 75 6e 67 79 20 72 65 70 61 69 6e 74 69 6e 67 20 |ungy repainting | 000029a0 6f 66 20 63 75 72 73 6f 72 20 69 6e 20 6d 61 72 |of cursor in mar| 000029b0 67 69 6e 20 62 6f 72 64 65 72 73 20 74 6f 20 62 |gin borders to b| 000029c0 65 20 69 6d 70 72 6f 76 65 64 2e 0a 2a 20 55 70 |e improved..* Up| 000029d0 64 61 74 65 20 6d 65 6e 75 20 73 68 6f 72 74 63 |date menu shortc| 000029e0 75 74 73 20 77 68 65 6e 20 62 61 73 65 6d 61 70 |uts when basemap| 000029f0 20 63 68 61 6e 67 65 73 2e 0a 2a 20 57 61 6e 74 | changes..* Want| 00002a00 20 63 6c 69 63 6b 20 6f 6e 20 77 69 6e 64 6f 77 | click on window| 00002a10 20 77 69 74 68 20 6d 69 6e 69 62 75 66 66 65 72 | with minibuffer| 00002a20 20 6f 70 65 6e 20 2d 3e 20 6d 69 6e 69 62 75 66 | open -> minibuf| 00002a30 66 65 72 2e 0a 2a 20 41 64 64 20 6b 65 79 20 73 |fer..* Add key s| 00002a40 68 6f 72 74 20 63 75 74 73 20 66 6f 72 20 77 72 |hort cuts for wr| 00002a50 69 74 61 62 6c 65 20 64 69 61 6c 6f 67 75 65 20 |itable dialogue | 00002a60 62 6f 78 65 73 2e 0a 2a 20 43 6f 6e 66 69 67 75 |boxes..* Configu| 00002a70 72 61 62 6c 65 20 73 74 72 69 6e 67 20 73 65 6e |rable string sen| 00002a80 74 20 74 6f 20 70 72 69 6e 74 65 72 20 61 74 20 |t to printer at | 00002a90 65 6e 64 20 6f 66 20 71 75 69 63 6b 70 72 69 6e |end of quickprin| 00002aa0 74 2e 0a 0a 53 75 67 67 65 73 74 69 6f 6e 73 2f |t...Suggestions/| 00002ab0 43 6f 6e 74 61 63 74 69 6e 67 20 6d 65 0a 2d 2d |Contacting me.--| 00002ac0 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d |----------------| 00002ad0 2d 2d 2d 2d 2d 2d 2d 0a 0a 49 66 20 79 6f 75 20 |-------..If you | 00002ae0 68 61 76 65 20 61 6e 79 20 73 75 67 67 65 73 74 |have any suggest| 00002af0 69 6f 6e 73 20 63 6f 6e 63 65 72 6e 69 6e 67 20 |ions concerning | 00002b00 74 68 65 20 6d 61 69 6e 20 5a 61 70 20 6d 6f 64 |the main Zap mod| 00002b10 75 6c 65 2c 20 70 6c 65 61 73 65 20 64 6f 6e 27 |ule, please don'| 00002b20 74 0a 68 65 73 69 74 61 74 65 20 74 6f 20 63 6f |t.hesitate to co| 00002b30 6e 74 61 63 74 20 6d 65 2e 20 49 20 77 69 6c 6c |ntact me. I will| 00002b40 20 61 6c 6d 6f 73 74 20 63 65 72 74 61 69 6e 6c | almost certainl| 00002b50 79 20 72 65 70 6c 79 20 69 66 20 79 6f 75 20 75 |y reply if you u| 00002b60 73 65 20 65 2d 6d 61 69 6c 0a 28 75 6e 6c 65 73 |se e-mail.(unles| 00002b70 73 20 49 20 63 61 6e 27 74 20 67 65 74 20 74 68 |s I can't get th| 00002b80 72 6f 75 67 68 2c 20 77 68 69 63 68 20 68 61 73 |rough, which has| 00002b90 20 68 61 70 70 65 6e 65 64 20 61 20 63 6f 75 70 | happened a coup| 00002ba0 6c 65 20 6f 66 20 74 69 6d 65 73 29 2e 20 4d 79 |le of times). My| 00002bb0 0a 61 64 64 72 65 73 73 20 69 73 20 69 6e 20 74 |.address is in t| 00002bc0 68 65 20 27 43 6f 70 79 72 69 67 68 74 27 20 66 |he 'Copyright' f| 00002bd0 69 6c 65 2e 0a 0a 49 66 20 79 6f 75 72 20 73 75 |ile...If your su| 00002be0 67 67 65 73 74 69 6f 6e 73 20 63 6f 6e 63 65 72 |ggestions concer| 00002bf0 6e 20 6f 6e 65 20 6f 66 20 74 68 65 20 65 78 74 |n one of the ext| 00002c00 65 6e 73 69 6f 6e 20 6d 6f 64 65 73 20 28 65 67 |ension modes (eg| 00002c10 20 43 20 6d 6f 64 65 29 20 6f 72 0a 74 65 6d 70 | C mode) or.temp| 00002c20 6c 61 74 65 20 66 69 6c 65 73 2c 20 6f 72 20 6f |late files, or o| 00002c30 6e 65 20 6f 66 20 74 68 65 20 6f 74 68 65 72 20 |ne of the other | 00002c40 74 68 69 6e 67 73 20 69 6e 20 74 68 65 20 33 72 |things in the 3r| 00002c50 64 50 61 72 74 79 20 64 69 72 65 63 74 6f 72 79 |dParty directory| 00002c60 20 6e 6f 74 0a 77 72 69 74 74 65 6e 20 62 79 20 | not.written by | 00002c70 6d 65 2c 20 74 68 65 6e 20 70 6c 65 61 73 65 20 |me, then please | 00002c80 77 72 69 74 65 20 74 6f 20 74 68 65 20 61 75 74 |write to the aut| 00002c90 68 6f 72 20 63 6f 6e 63 65 72 6e 65 64 2c 20 61 |hor concerned, a| 00002ca0 6e 64 20 6e 6f 74 20 74 6f 20 6d 65 0a 28 75 6e |nd not to me.(un| 00002cb0 6c 65 73 73 20 79 6f 75 20 68 61 76 65 20 74 72 |less you have tr| 00002cc0 6f 75 62 6c 65 20 67 65 74 74 69 6e 67 20 74 68 |ouble getting th| 00002cd0 72 6f 75 67 68 29 2e 20 41 6c 6c 20 74 68 65 69 |rough). All thei| 00002ce0 72 20 61 64 64 72 65 73 73 65 73 20 61 72 65 20 |r addresses are | 00002cf0 69 6e 20 74 68 65 0a 33 72 64 50 61 72 74 79 2e |in the.3rdParty.| 00002d00 52 65 61 64 4d 65 20 66 69 6c 65 2e 0a |ReadMe file..| 00002d0d