From: George H. <geo...@us...> - 2010-08-30 13:10:24
|
Update of /cvsroot/win32forth/win32forth/src/lib In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv21883 Modified Files: ExtStruct.f Log Message: Corrected spelling Index: ExtStruct.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/src/lib/ExtStruct.f,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** ExtStruct.f 3 Aug 2006 13:08:22 -0000 1.9 --- ExtStruct.f 30 Aug 2010 13:10:16 -0000 1.10 *************** *** 1,2 **** --- 1,5 ---- + \ $Id$ + + \ C like structures. \ Written by Jos v.d. Ven and Dirk Busch. *************** *** 173,177 **** \ create a struct in the dictionary and fill it with zero's ! \ Note create alignes the memory structures. : mkstruct: ( size-struct <-name-> -- ) create here over allot swap erase ; --- 176,180 ---- \ create a struct in the dictionary and fill it with zero's ! \ Note create aligns the memory structures. : mkstruct: ( size-struct <-name-> -- ) create here over allot swap erase ; |