summary refs log tree commit diff
path: root/dynamic.e
diff options
context:
space:
mode:
Diffstat (limited to 'dynamic.e')
-rw-r--r--dynamic.e6
1 files changed, 3 insertions, 3 deletions
diff --git a/dynamic.e b/dynamic.e
index 55db683..d10a9c4 100644
--- a/dynamic.e
+++ b/dynamic.e
@@ -293,9 +293,9 @@
 
 ~   We'll be defining a lot of immediate words, so we should set up a terse
 ~ way to do that.
-: make-immediate latest @ dup entry-flags@ 0x01 | entry-flags! ;
-: make-hidden latest @ dup entry-flags@ 0x80 | entry-flags! ;
-: make-visible latest @ dup entry-flags@ 0x80 invert & entry-flags! ;
+: make-immediate latest @ dup entry-flags@ 0x01 | swap entry-flags! ;
+: make-hidden latest @ dup entry-flags@ 0x80 | swap entry-flags! ;
+: make-visible latest @ dup entry-flags@ 0x80 invert & swap entry-flags! ;
 
 ~   Sooner or later we'll want to define recursive words; this one lets us
 ~ do that. It compiles into a call to the word that's currently being