about summary refs log tree commit diff stats
path: root/edit
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-08 13:58:40 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-08 14:04:46 -0800
commitebdf923d2dd8c75d1391f3523825ab5cb36a6405 (patch)
treedd1caf38c36efa50d6758284aa92ec21617a4460 /edit
parentfa8eda45947ca4d4e394441203c0e871251ec121 (diff)
downloadmu-ebdf923d2dd8c75d1391f3523825ab5cb36a6405.tar.gz
2397
Fix that stray issue with a better phase ordering.
Another thing I'm not testing.
Diffstat (limited to 'edit')
-rw-r--r--edit/003-shortcuts.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/edit/003-shortcuts.mu b/edit/003-shortcuts.mu
index 91f3246d..88a67e26 100644
--- a/edit/003-shortcuts.mu
+++ b/edit/003-shortcuts.mu
@@ -1637,7 +1637,7 @@ recipe delete-to-end-of-line editor:address:editor-data -> result:address:duplex
     loop
   }
   # snip it out
-  result:address:duplex-list:character <- next-duplex start  # XXX: segfault on deleting this type
+  result <- next-duplex start
   remove-duplex-between start, end
 ]