From: George H. <geo...@us...> - 2013-02-14 19:07:45
|
Update of /cvsroot/win32forth/win32forth/Help/html In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv31140 Modified Files: w32f-HelpConventions.htm w32f-MoveTo.6.14.htm w32f-chains.htm Log Message: Updated docs Index: w32f-MoveTo.6.14.htm =================================================================== RCS file: /cvsroot/win32forth/win32forth/Help/html/w32f-MoveTo.6.14.htm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** w32f-MoveTo.6.14.htm 3 Mar 2012 09:15:14 -0000 1.4 --- w32f-MoveTo.6.14.htm 14 Feb 2013 19:07:42 -0000 1.5 *************** *** 26,30 **** <ul> ! <li><b>Steep change </b><a href='#savewords'>Saving programms</a></li> <li><b>Steep change </b><a href='#w32fmsg'>Win32Forth messaging</a></li> <li><b>Soft change </b><a href='#deprecated'>Deprecated words</a></li> --- 26,30 ---- <ul> ! <li><b>Steep change </b><a href='#savewords'>Saving programs</a></li> <li><b>Steep change </b><a href='#w32fmsg'>Win32Forth messaging</a></li> <li><b>Soft change </b><a href='#deprecated'>Deprecated words</a></li> *************** *** 33,37 **** ! <a name='savewords'><h3>Saving programms</h3></a> <p>The words <code>APPLICATION</code> and <code>FSAVE</code> have been removed --- 33,37 ---- ! <a name='savewords'><h3>Saving programs</h3></a> <p>The words <code>APPLICATION</code> and <code>FSAVE</code> have been removed *************** *** 42,46 **** before a save, particularly <code>DEFAULT-HELLO</code> which is too close to the sytem and easily handle the inclusion of a console and/or message loop ! in the saved programm.</p> <p>You can have further details about new <code>SAVE</code> and --- 42,46 ---- before a save, particularly <code>DEFAULT-HELLO</code> which is too close to the sytem and easily handle the inclusion of a console and/or message loop ! in the saved program.</p> <p>You can have further details about new <code>SAVE</code> and *************** *** 54,58 **** <p>If you had any application specific initializations in your own definitions ! for BOOT or DEFAULT-HELLO , move them in your programm's main word. Delete the words you were using as BOOT and DEFAULT-HELLO .</p> --- 54,58 ---- <p>If you had any application specific initializations in your own definitions ! for BOOT or DEFAULT-HELLO , move them in your program's main word. Delete the words you were using as BOOT and DEFAULT-HELLO .</p> *************** *** 61,69 **** <p>Suppress any use of <code>MessageLoop</code> (and words that you could get ! undefined such as <code>NoConsole></code>) in your programm.</p> <p><br>Then :<br></p> ! <p>Replace FSAVE and APPLICATION with SAVE : don't forget to give your programm's main word as the application cfa of SAVE . <br>(TURNKEY remains the same)</p> --- 61,69 ---- <p>Suppress any use of <code>MessageLoop</code> (and words that you could get ! undefined such as <code>NoConsole></code>) in your program.</p> <p><br>Then :<br></p> ! <p>Replace FSAVE and APPLICATION with SAVE : don't forget to give your program's main word as the application cfa of SAVE . <br>(TURNKEY remains the same)</p> *************** *** 73,77 **** remove any reference to :</p> <pre> NoConsole NoConsoleInImage</pre> ! <p>and remove from your programm's main word:</p> <pre> Turnkeyed? if MessageLoop Bye then</pre> --- 73,77 ---- remove any reference to :</p> <pre> NoConsole NoConsoleInImage</pre> ! <p>and remove from your program's main word:</p> <pre> Turnkeyed? if MessageLoop Bye then</pre> *************** *** 85,89 **** <pre> ConsoleHiddenBoot</pre> <p>before your SAVE or TURNKEY command and do whatever further console ! initialization in your programm's main word.</p> --- 85,89 ---- <pre> ConsoleHiddenBoot</pre> <p>before your SAVE or TURNKEY command and do whatever further console ! initialization in your program's main word.</p> Index: w32f-chains.htm =================================================================== RCS file: /cvsroot/win32forth/win32forth/Help/html/w32f-chains.htm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** w32f-chains.htm 15 May 2008 06:28:27 -0000 1.1 --- w32f-chains.htm 14 Feb 2013 19:07:42 -0000 1.2 *************** *** 105,109 **** <td>initialization-chain</td> <td>chain of things to initialize</td> ! <td>HELLO DEFAULT-HELLO</td> </tr> <tr> --- 105,109 ---- <td>initialization-chain</td> <td>chain of things to initialize</td> ! <td>GENERALBOOT</td> </tr> <tr> *************** *** 123,131 **** </tr> <tr> - <td>mouse-chain</td> - <td>chain of things to do on mouse down</td> - <td>MOUSE-CLICK</td> - </tr> - <tr> <td>semicolon-chain</td> <td>chain of things to do at end of definition</td> --- 123,126 ---- *************** *** 143,165 **** </tr> <tr> - <td>ledit-chain</td> - <td>line editor function key chain</td> - <td>LINEEDITOR</td> - </tr> - <tr> <td>msg-chain</td> ! <td>chain of forth key messages</td> <td>HandleMessages</td> </tr> <tr> - <td>forth-msg-chain</td> - <td>chain of forth window message</td> - <td>HandleWindowsMessages</td> - </tr> - <tr> <td>reset-stack-chain</td> <td>chain for resetting the stack</td> <td>RESET-STACKS</td> </tr> </tbody> </table> --- 138,155 ---- </tr> <tr> <td>msg-chain</td> ! <td>chain of handlers for Windows messages</td> <td>HandleMessages</td> </tr> <tr> <td>reset-stack-chain</td> <td>chain for resetting the stack</td> <td>RESET-STACKS</td> </tr> + <tr> + <td>pre-save-image-chain</td> + <td>chain of things to do to the new image prior to saving</td> + <td>IMAGE-COPY</td> + </tr> </tbody> </table> *************** *** 187,191 **** </tr> <tr> ! <td>word-type-chain</td> <td></td> <td>.WORDTYPE</td> --- 177,181 ---- </tr> <tr> ! <td>.word-type-chain</td> <td></td> <td>.WORDTYPE</td> *************** *** 207,221 **** <tbody> <tr> ! <td>execution-class-chain</td> <td></td> <td>.EXECUTION-CLASS</td> </tr> <tr> ! <td>other-class-chain</td> <td></td> <td>.OTHER</td> </tr> <tr> ! <td>word-chain</td> <td></td> <td>.WORD</td> --- 197,211 ---- <tbody> <tr> ! <td>.execution-class-chain</td> <td></td> <td>.EXECUTION-CLASS</td> </tr> <tr> ! <td>.other-class-chain</td> <td></td> <td>.OTHER</td> </tr> <tr> ! <td>.word-chain</td> <td></td> <td>.WORD</td> *************** *** 226,230 **** <hr> ! <p>Document : w32f-chains.htm -- 2004/12/21 -- alex_mcdonald</p> </body> --- 216,220 ---- <hr> ! <p>Document $Id$</p> </body> Index: w32f-HelpConventions.htm =================================================================== RCS file: /cvsroot/win32forth/win32forth/Help/html/w32f-HelpConventions.htm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** w32f-HelpConventions.htm 28 May 2008 04:01:07 -0000 1.2 --- w32f-HelpConventions.htm 14 Feb 2013 19:07:42 -0000 1.3 *************** *** 79,86 **** </thead> <tbody> ! </tr> <td><name></td> <td>name to be parsed from input stream</td> ! <td><code>VARIABLE \ Comp: ( <name> -- ) Run name: ( -- addr )</code></td> </tr> <tr> --- 79,91 ---- </thead> <tbody> ! <tr> <td><name></td> <td>name to be parsed from input stream</td> ! <td><code>VARIABLE \ Comp: ( <name> -- ) Run time: ( -- addr )</code></td> ! </tr> ! <tr> ! <td>"name"</td> ! <td>name to be parsed from input stream</td> ! <td><code>VALUE \ Comp: ( "name" -- ) Run time: ( -- addr )</code></td> </tr> <tr> *************** *** 101,106 **** <tr> <td>addr cnt</td> ! <td>addr and lenght of a string</td> ! <td><code>TYPE ( addr count -- )</code></td> </tr> <tr> --- 106,137 ---- <tr> <td>addr cnt</td> ! <td>addr and length of a string</td> ! <td><code>TYPE ( addr cnt -- )</code></td> ! </tr> ! <tr> ! <td>addr len</td> ! <td>addr and length of a string</td> ! <td><code>TYPE ( addr len -- )</code></td> ! </tr> ! <tr> ! <td>addr u</td> ! <td>addr and length of a string</td> ! <td><code>TYPE ( addr u -- )</code></td> ! </tr> ! </tr> ! <tr> ! <td>c-addr cnt</td> ! <td>addr and length of a string</td> ! <td><code>TYPE ( c-addr cnt -- )</code></td> ! </tr> ! <tr> ! <td>c-addr len</td> ! <td>c-addr and length of a string</td> ! <td><code>TYPE ( c-addr len -- )</code></td> ! </tr> ! <tr> ! <td>c-addr u</td> ! <td>c-addr and length of a string</td> ! <td><code>TYPE ( c-addr u -- )</code></td> </tr> <tr> *************** *** 127,131 **** <td>r or f</td> <td>real or floating point number</td> ! <td></td> </tr> <tr> --- 158,162 ---- <td>r or f</td> <td>real or floating point number</td> ! <td><code>F+ ( fs: r1 r2 -- r3 )</code></td> </tr> <tr> *************** *** 146,150 **** <tr> <td>???-sys</td> ! <td>parameter used by Forth system</td> <td><code>LEAVE ( -- ) ( R: loop-sys -- )</code></td> </tr> --- 177,181 ---- <tr> <td>???-sys</td> ! <td>parameters used by Forth system</td> <td><code>LEAVE ( -- ) ( R: loop-sys -- )</code></td> </tr> |