diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-11 10:21:51 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-11 10:21:51 -0500 |
commit | e41b124320011cb1451f9869710a110058ee95aa (patch) | |
tree | a192a89a8c6a4b7bfab7d35ecf0cabe323048394 /libalee/corewords.cpp | |
parent | bc3e952b487365fdf5e60e9fcfa0841c23972e30 (diff) |
update documentation
Diffstat (limited to 'libalee/corewords.cpp')
-rw-r--r-- | libalee/corewords.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libalee/corewords.cpp b/libalee/corewords.cpp index b8a415e..1a09936 100644 --- a/libalee/corewords.cpp +++ b/libalee/corewords.cpp @@ -44,7 +44,7 @@ void tick(State& state) auto word = getword(state); if (auto j = state.dict.find(word); j > 0) { state.push(state.dict.getexec(j)); - auto imm = state.dict.read(j) & CoreWords::Immediate; + auto imm = state.dict.read(j) & Dictionary::Immediate; state.push(imm ? 1 : -1); } else if (auto i = CoreWords::findi(state, word); i >= 0) { state.push(i); |