changeset 28685:b4310b6f3b5e

(produce_glyphs): Remove reference to struct it's prompt_width.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 24 Apr 2000 13:53:16 +0000
parents 609d4aabf72c
children b02f0d91b5aa
files src/term.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/term.c	Mon Apr 24 13:52:50 2000 +0000
+++ b/src/term.c	Mon Apr 24 13:53:16 2000 +0000
@@ -1821,7 +1821,7 @@
     it->pixel_width = it->nglyphs = 0;
   else if (it->c == '\t')
     {
-      int absolute_x = (it->current_x - it->prompt_width
+      int absolute_x = (it->current_x
 			+ it->continuation_lines_width);
       int next_tab_x 
 	= (((1 + absolute_x + it->tab_width - 1) 
@@ -2192,7 +2192,7 @@
   TS_clr_to_bottom = tgetstr ("cd", address);
   TS_clr_line = tgetstr ("ce", address);
   TS_clr_frame = tgetstr ("cl", address);
-  ColPosition = tgetstr ("ch", address);
+  ColPosition = NULL; /* tgetstr ("ch", address); */
   AbsPosition = tgetstr ("cm", address);
   CR = tgetstr ("cr", address);
   TS_set_scroll_region = tgetstr ("cs", address);