about summary refs log tree commit diff stats
path: root/apps/mu.subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-10-30 09:51:07 -0700
committerKartik Agaram <vc@akkartik.com>2019-10-30 09:51:07 -0700
commitde54d4735b57528754aa715c6ae2ea05f6e95577 (patch)
tree34f8f01d4374d46b6aab2ee98152669198ac71e4 /apps/mu.subx
parent01c811d9ae92e91790b4191f4c98b866e1b6611a (diff)
downloadmu-de54d4735b57528754aa715c6ae2ea05f6e95577.tar.gz
5725
Diffstat (limited to 'apps/mu.subx')
-rw-r--r--apps/mu.subx5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/mu.subx b/apps/mu.subx
index 5036103e..481ed0e7 100644
--- a/apps/mu.subx
+++ b/apps/mu.subx
@@ -263,7 +263,10 @@ parse-mu:  # in : (address buffered-file)
     #       else if slice-starts-with?(word-slice, "#")  # comment
     #         break                                 # end of line
     #       else if slice-equal(word-slice, "fn")
-    #         var curr-function/ecx : (address function)
+    #         var new-function : (address function) = new function
+    #         populate-mu-function(in, new-function)
+    #         *curr-function = new-function
+    #         curr-function = &new-function->next
     #       else
     #         abort()
     #