From: George H. <geo...@us...> - 2010-06-05 07:47:12
|
Update of /cvsroot/win32forth/win32forth/src In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv1655 Modified Files: FLOAT.F w32fMsg.f Log Message: Fixed minor bug in >FLOAT Index: w32fMsg.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/src/w32fMsg.f,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** w32fMsg.f 20 Oct 2008 21:20:45 -0000 1.13 --- w32fMsg.f 5 Jun 2010 07:47:03 -0000 1.14 *************** *** 75,79 **** \ ** application's inter-process identification & communication capabilities. ! \ *P The default action is using none of theese lines, the result in this case is: \ *B While developping, your program is considered to be win32Forth itself. \ ** It is able to communicate with Help and IDE, for example for using the debugger. --- 75,79 ---- \ ** application's inter-process identification & communication capabilities. ! \ *P The default action is using none of these lines, the result in this case is: \ *B While developping, your program is considered to be win32Forth itself. \ ** It is able to communicate with Help and IDE, for example for using the debugger. *************** *** 325,329 **** \ *P Each application can create a set of win32forth-specific messages, identified ! \ ** by custom messages numbers. Theese message identifiers must be loaded in both \ ** applications so that they understand each other. --- 325,329 ---- \ *P Each application can create a set of win32forth-specific messages, identified ! \ ** by custom messages numbers. These message identifiers must be loaded in both \ ** applications so that they understand each other. Index: FLOAT.F =================================================================== RCS file: /cvsroot/win32forth/win32forth/src/FLOAT.F,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** FLOAT.F 24 May 2010 21:09:44 -0000 1.54 --- FLOAT.F 5 Jun 2010 07:47:03 -0000 1.55 *************** *** 1656,1660 **** code sig>f ( fs: -- r ) \ Push contents of 80-bit BCD number in fbcd-buf onto FP stack ! fbld fbcd-buf fpu> float; --- 1656,1660 ---- code sig>f ( fs: -- r ) \ Push contents of 80-bit BCD number in fbcd-buf onto FP stack ! fbld fbcd-buf [up] fpu> float; |