about summary refs log tree commit diff stats
path: root/edit.mu
diff options
context:
space:
mode:
Diffstat (limited to 'edit.mu')
-rw-r--r--edit.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/edit.mu b/edit.mu
index 706d5de4..ebf43161 100644
--- a/edit.mu
+++ b/edit.mu
@@ -1,7 +1,7 @@
 ; a screen is an array of pointers to lines, in turn arrays of characters
 
 (function new-screen [
-  (default-scope:scope-address <- new scope:literal 30:literal)
+  (default-space:space-address <- new space:literal 30:literal)
   (nrows:integer <- next-input)
   (ncols:integer <- next-input)
   (result:screen-address <- new screen:literal nrows:integer)