summary refs log tree commit diff
path: root/labels.e
diff options
context:
space:
mode:
Diffstat (limited to 'labels.e')
-rw-r--r--labels.e3
1 files changed, 2 insertions, 1 deletions
diff --git a/labels.e b/labels.e
index be601a3..b524229 100644
--- a/labels.e
+++ b/labels.e
@@ -128,7 +128,8 @@ init-labels
 ~ (label entry pointer -- label value)
 : use-label
   ~ If it hasn't been defined yet, mark it used-before-set.
-  dup label-status dup @ dup 0x02 & not { 0x04 | swap ! } { drop drop } if-else
+  dup label-status dup @ dup 0x02 & not
+  { 0x04 | swap ! } { drop drop } if-else
 
   ~ Mark it used. It's faster to just do this than to check if it's needed.
   dup label-status dup @ 0x01 | swap !