about summary refs log tree commit diff stats
path: root/apps/tile/environment.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-10-17 11:48:13 -0700
committerKartik Agaram <vc@akkartik.com>2020-10-17 11:48:13 -0700
commite3d6e067c6a52848fb097313fa2f5f391f79e692 (patch)
tree01af773b24f52ed6615e2672884bfcd4b002f216 /apps/tile/environment.mu
parent302082ab706bf97256396ae5468fa85ce903b84a (diff)
downloadmu-e3d6e067c6a52848fb097313fa2f5f391f79e692.tar.gz
7048
Diffstat (limited to 'apps/tile/environment.mu')
-rw-r--r--apps/tile/environment.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/tile/environment.mu b/apps/tile/environment.mu
index ff77688f..399e11a5 100644
--- a/apps/tile/environment.mu
+++ b/apps/tile/environment.mu
@@ -590,12 +590,12 @@ fn render-sandbox screen: (addr screen), functions: (addr handle function), bind
   # if necessary, draw the rename-word modal dialog
   var sandbox/esi: (addr sandbox) <- copy _sandbox
   var cursor-row/eax: int <- call-depth-at-cursor _sandbox
-  render-rename-word screen, sandbox, cursor-row, cursor-col
+  render-rename-dialog screen, sandbox, cursor-row, cursor-col
   # Finally, position the cursor correctly.
   move-cursor screen, cursor-row, cursor-col
 }
 
-fn render-rename-word screen: (addr screen), _sandbox: (addr sandbox), cursor-row: int, cursor-col: int {
+fn render-rename-dialog screen: (addr screen), _sandbox: (addr sandbox), cursor-row: int, cursor-col: int {
   var sandbox/edi: (addr sandbox) <- copy _sandbox
   var rename-word-mode-ah?/ecx: (addr handle word) <- get sandbox, partial-name-for-cursor-word
   var rename-word-mode?/eax: (addr word) <- lookup *rename-word-mode-ah?