about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--mu.arc10
1 files changed, 5 insertions, 5 deletions
diff --git a/mu.arc b/mu.arc
index 6c1f0254..df18ef0c 100644
--- a/mu.arc
+++ b/mu.arc
@@ -251,12 +251,12 @@
 (def stack (routine)
   ((rep routine) 'call-stack))
 
-(mac push-stack (routine op)
-  `(push (obj fn-name ,op  pc 0  caller-arg-idx 0)
-         ((rep ,routine) 'call-stack)))
+(def push-stack (routine op)
+  (push (obj fn-name op  pc 0  caller-arg-idx 0)
+        rep.routine!call-stack))
 
-(mac pop-stack (routine)
-  `(pop ((rep ,routine) 'call-stack)))
+(def pop-stack (routine)
+  (pop rep.routine!call-stack))
 
 (def top (routine)
   stack.routine.0)