about summary refs log tree commit diff stats
path: root/edit
diff options
context:
space:
mode:
Diffstat (limited to 'edit')
-rw-r--r--edit/011-editor-undo.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/edit/011-editor-undo.mu b/edit/011-editor-undo.mu
index 5c9876d0..75872cf0 100644
--- a/edit/011-editor-undo.mu
+++ b/edit/011-editor-undo.mu
@@ -1620,7 +1620,7 @@ before <backspace-character-end> [
     undo:address:list:address:operation <- get *editor, undo:offset
     {
       # if previous operation was an insert, coalesce this operation with it
-      break-unless *undo
+      break-unless undo
       op:address:operation <- first undo
       deletion:delete-operation, is-delete?:boolean <- maybe-convert *op, delete:variant
       break-unless is-delete?