Yes, of course I'll disclose the bug. I only asked because I wanted to know that it isn't only me, that's all. Could someone confirm the issue? The bug is: lack of row increasing leading to infinite loop interruptible by a keypress only:
│ --- a/src/editor/editdraw.c
16│ +++ b/src/editor/editdraw.c
17│ @@ -926,14 +926,15 @@ render_edit_text (WEdit * edit, long start_row, long start_column, long e
18│ upto = MIN (curs_row - 1, end_row);
19│ while (row <= upto)
20│ {
21│ if (key_pending (edit))
22│ return;
23│ edit_draw_this_line (edit, b, row, start_column, end_column);
24│ b = edit_buffer_get_forward_offset (&edit->buffer, b, 1, 0);
25│ + row += 1;
26│ }