aboutsummaryrefslogtreecommitdiff
path: root/src/sc_editor.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2018-03-26 22:18:53 +0200
committerThomas White <taw@physics.org>2018-03-26 22:20:08 +0200
commitbd4c1352535ddb2bc67adc1065a7c1902a3ac86f (patch)
treebc1bd7ef7de311bd73baa5c3332df5a64451b85c /src/sc_editor.c
parent0338aefd86abc68337b2423a799576569ec45c48 (diff)
Ensure no empty paragraphs before deleting
Diffstat (limited to 'src/sc_editor.c')
-rw-r--r--src/sc_editor.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/sc_editor.c b/src/sc_editor.c
index 897a2a4..a870059 100644
--- a/src/sc_editor.c
+++ b/src/sc_editor.c
@@ -748,16 +748,8 @@ static void do_backspace(struct frame *fr, SCEditor *e)
show_edit_pos(p1);
show_edit_pos(p2);
- if ( position_editable(e->cursor_frame, p1)
- && position_editable(e->cursor_frame, p2) )
- {
-
- delete_text_from_frame(e->cursor_frame, p1, p2, wrapw);
- e->cpos = p2;
-
- } else {
- fprintf(stderr, "Deleting not editable.\n");
- }
+ delete_text_from_frame(e->cursor_frame, p1, p2, wrapw);
+ e->cpos = p2;
} else {