diff options
| -rw-r--r-- | src/term.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/term.c b/src/term.c index eaac25c6819..63ed8f86af2 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -1821,7 +1821,7 @@ produce_glyphs (it) | |||
| 1821 | it->pixel_width = it->nglyphs = 0; | 1821 | it->pixel_width = it->nglyphs = 0; |
| 1822 | else if (it->c == '\t') | 1822 | else if (it->c == '\t') |
| 1823 | { | 1823 | { |
| 1824 | int absolute_x = (it->current_x - it->prompt_width | 1824 | int absolute_x = (it->current_x |
| 1825 | + it->continuation_lines_width); | 1825 | + it->continuation_lines_width); |
| 1826 | int next_tab_x | 1826 | int next_tab_x |
| 1827 | = (((1 + absolute_x + it->tab_width - 1) | 1827 | = (((1 + absolute_x + it->tab_width - 1) |
| @@ -2192,7 +2192,7 @@ to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.", | |||
| 2192 | TS_clr_to_bottom = tgetstr ("cd", address); | 2192 | TS_clr_to_bottom = tgetstr ("cd", address); |
| 2193 | TS_clr_line = tgetstr ("ce", address); | 2193 | TS_clr_line = tgetstr ("ce", address); |
| 2194 | TS_clr_frame = tgetstr ("cl", address); | 2194 | TS_clr_frame = tgetstr ("cl", address); |
| 2195 | ColPosition = tgetstr ("ch", address); | 2195 | ColPosition = NULL; /* tgetstr ("ch", address); */ |
| 2196 | AbsPosition = tgetstr ("cm", address); | 2196 | AbsPosition = tgetstr ("cm", address); |
| 2197 | CR = tgetstr ("cr", address); | 2197 | CR = tgetstr ("cr", address); |
| 2198 | TS_set_scroll_region = tgetstr ("cs", address); | 2198 | TS_set_scroll_region = tgetstr ("cs", address); |