1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2024-06-01 03:41:34 +00:00

Can't put test for componly in execword

This commit is contained in:
David Schmenk 2024-01-08 11:37:25 -08:00
parent 9587423c46
commit eefd9ba2dd
2 changed files with 5 additions and 5 deletions

Binary file not shown.

View File

@ -935,11 +935,6 @@ end
// Execute code in CFA
//
def execword(dentry)#0
if ^_ffa_(dentry) & componly_flag and not (state & comp_flag)
puts(dentry)
puts(" : Compile only word\n")
_quit_
fin
when conio:keypressed()
is $83 // CTRL-C
getc // Clear KB
@ -1043,6 +1038,11 @@ def interpret#0
dentry = find(inchars, inlen)
if dentry
if ^_ffa_(dentry) & imm_flag or not (state & comp_flag)
if ^_ffa_(dentry) & componly_flag and not (state & comp_flag)
puts(dentry)
puts(" : Compile only word\n")
_quit_
fin
execword(dentry)
else
compword(dentry)