diff --git a/src/editor/edit.c b/src/editor/edit.c
index 3dfd22e..9939064 100644
a
|
b
|
|
1672 | 1672 | do |
1673 | 1673 | { |
1674 | 1674 | edit_cursor_move (edit, cur_bol - edit->curs1); |
| 1675 | if (!line_is_blank (edit, edit->curs_line)) { |
1675 | 1676 | if (option_fill_tabs_with_spaces) |
1676 | 1677 | insert_spaces_tab (edit, option_fake_half_tabs); |
1677 | 1678 | else |
1678 | 1679 | edit_insert (edit, '\t'); |
1679 | | edit_cursor_move (edit, edit_bol (edit, cur_bol) - edit->curs1); |
| 1680 | edit_cursor_move (edit, edit_bol (edit, cur_bol) - edit->curs1); } |
1680 | 1681 | |
1681 | 1682 | if (cur_bol == 0) |
1682 | 1683 | break; |