From e41b124320011cb1451f9869710a110058ee95aa Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 11 Mar 2023 10:21:51 -0500 Subject: update documentation --- libalee/corewords.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libalee/corewords.cpp') 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); -- cgit v1.2.3