Skip to content

Commit

Permalink
Blink is *actually* a toggle now.
Browse files Browse the repository at this point in the history
  • Loading branch information
hellige committed May 7, 2012
1 parent 81f91a7 commit cb5bc87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion goforth.ft
Expand Up @@ -279,7 +279,7 @@ term r g b hi 2* 4 lshift invert constant fgmask

: bg ( term -- ) 2* conattr @ bgmask and or conattr ! ;
: fg ( term -- ) 2* 4 lshift conattr @ fgmask and or conattr ! ;
: blink ( -- ) conattr @ 1 or conattr ! ; \ this one is a toggle
: blink ( -- ) conattr @ 1 xor conattr ! ; \ this one is a toggle
: defcon ( -- ) term bg term r g b fg ;


Expand Down

0 comments on commit cb5bc87

Please sign in to comment.