diff options
| author | Lukas Fürmetz <fuermetz@mailbox.org> | 2018-11-03 11:17:03 +0100 |
|---|---|---|
| committer | Lukas Fürmetz <fuermetz@mailbox.org> | 2018-11-03 11:17:03 +0100 |
| commit | 2135433949ed4447f8404c88ea9f519c0ade412f (patch) | |
| tree | 8a7609b3f47efdebb6b4732b2f66fe5a5b2ede0e /vterm-module.c | |
| parent | 9e8d0c598dfd09cfbcf8dcc72002cdd83757c6b7 (diff) | |
Revert "ignore black cell at eol"
This reverts commit 78d80fadd8209157f97fd0a53a9a58b4ff009bf7.
Diffstat (limited to 'vterm-module.c')
| -rw-r--r-- | vterm-module.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/vterm-module.c b/vterm-module.c index f6bd1ef..d2728d2 100644 --- a/vterm-module.c +++ b/vterm-module.c @@ -154,10 +154,6 @@ static size_t refresh_lines(Term *term, emacs_env *env, int start_row, for (row = start_row; row < end_row; row++) { for (j = 0; j < end_col; j++) { VTermPos pos = {.row = row, .col = j}; - if(vterm_screen_is_eol(term->vts,pos)){ - /* This cell is EOL if this and every cell to the right is black */ - break; - } fetch_cell(term, row, j, &cell); if (!compare_cells(&cell, &lastCell)) { |
