[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [gforth] char translation with 'everychar' causes word completion er
From: |
Josh Grams |
Subject: |
Re: [gforth] char translation with 'everychar' causes word completion error |
Date: |
Fri, 21 Jun 2013 05:46:49 -0400 |
User-agent: |
Mutt/1.5.18 (2008-05-17) |
On 2013-06-21 12:14AM, Marcos Cruz wrote:
>: (everychar) ( key -- key ) dup bl <> and ;
>' (everychar) is everychar
You're *removing* the existing functionality of everychar -- I'd guess
that's what's screwing it up. Try this:
: (everychar) defers everychar dup bl <> and ;
Works for me, anyway...
--Josh