From d9d57f383dbd8e45f915f082955d3e58878bbd96 Mon Sep 17 00:00:00 2001 From: dschmenk Date: Mon, 8 Jan 2024 13:02:50 -0800 Subject: [PATCH] Fix ' (tick) that I broke --- src/toolsrc/plforth.pla | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/src/toolsrc/plforth.pla b/src/toolsrc/plforth.pla index fb516c9..68ea616 100644 --- a/src/toolsrc/plforth.pla +++ b/src/toolsrc/plforth.pla @@ -1596,15 +1596,10 @@ def _tick_#0 word dentry dentry = find(nextword(' ')) - if dentry - if state & comp_flag - compliteral(dentry) - else - (@push)(dentry)#0 - fin + if state & comp_flag + compliteral(dentry) else - puts("No match\n") - _quit_ + (@push)(dentry)#0 fin end def _forget_#0