P4_LISTWORDS(extensions) =
{ (, ), (, ), (, ), (, ), (, ), (, ), (, ),#if 1 && defined PFE_WITH_SPY (, ),#endif#if 1 && defined _K12_SOURCE (, ),#endif};
P4_COUNTWORDS(extensions, "Extensions To Forth Base System");
/**[ANS]( -- ) immediate
* the VOCABULARY that holds only the standardwords.
* see FORTH for a definition that will search-also point to ANS'
*/
/**FORTH( -- )
* in pfe it is not actually a VOCABULARY anymore but
* behaves likewise. it will fetch the VALUE from FORTH-WORDLIST
* and execute it as if it were a VOCABULARY
*/
/**EXTENSIONS( -- )
* in pfe it is not actually a VOCABULARY anymore but
* behaves likewise. it will fetch the VALUE from EXTRA-WORDLIST
* and execute it as if it were a VOCABULARY
*/
/* --------------------------------------------------------------- *
* some old cruft
*/
#ifdef P4_MODULES #include "lined.h"
void*
p4_lined_executes (void* a)
{
void* R = PFE.accept_lined.executes;
PFE.accept_lined.executes = a;
return R;
}
void* p4_wait_for_stdin (void* a)
{
void* R = PFE.wait_for_stdin;
PFE.wait_for_stdin = a;
return R;
}