From: Jos v.d.V. <jo...@us...> - 2008-08-16 13:31:50
|
Update of /cvsroot/win32forth/win32forth/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv24368 Modified Files: imageman.f Log Message: Jos: To simplify console applications. Saving boring cut and past actions. Index: imageman.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/src/imageman.f,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** imageman.f 29 Jun 2008 05:12:40 -0000 1.15 --- imageman.f 16 Aug 2008 13:31:47 -0000 1.16 *************** *** 824,827 **** --- 824,833 ---- startup. BOTH THESE VALUES ARE NOW IGNORED. APPLICATION is now effectively a synonym of FSAVE. + + Note: When you use the new console then you can choose to run + the application in a visible console or in a hidden console. + That can be done with the words in-console or in-hidden-console. + See NewConsole.f for the details + )) *************** *** 971,976 **** --- 977,985 ---- ; + defer console-application ' noop is console-application + : APPLICATION ( app-mem sys-mem app-cfa -<name>- ) \ create application "name" depth 3 < abort" Need 3 arguments, APP-MEM SYS-MEM and APP-CFA" + console-application \ Determines what default-hello will be used >r 2drop action-of boot |