about summary refs log tree commit diff stats
path: root/edit/006-sandbox-edit.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-15 12:43:11 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-15 12:43:11 -0800
commit741ef43e4ce57d59b6ae8267fde9135cb70bb79d (patch)
tree5b3ffa49a4ac973fc6e70678fb3e4893baa2250c /edit/006-sandbox-edit.mu
parentc55e49b6374656099566fd22f39328c2da75b044 (diff)
downloadmu-741ef43e4ce57d59b6ae8267fde9135cb70bb79d.tar.gz
2446 - drop '-duplex' namespacing in recipes
Great that it just worked after the previous commit.
Diffstat (limited to 'edit/006-sandbox-edit.mu')
-rw-r--r--edit/006-sandbox-edit.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/edit/006-sandbox-edit.mu b/edit/006-sandbox-edit.mu
index bec144f4..ea95c6af 100644
--- a/edit/006-sandbox-edit.mu
+++ b/edit/006-sandbox-edit.mu
@@ -93,7 +93,7 @@ recipe empty-editor? editor:address:editor-data -> result:boolean [
   local-scope
   load-ingredients
   head:address:duplex-list:character <- get *editor, data:offset
-  first:address:duplex-list:character <- next-duplex head
+  first:address:duplex-list:character <- next head
   result <- not first
 ]