* tuiSource.c (tuiVerticalSourceScroll): Use print_source_lines
to update the current source line.
+2002-09-01 Stephane Carrez <stcarrez@nerim.fr>
+
+ * tui-out.c (tui_out_new): Clear start_of_line.
+ * tuiSource.c (tuiVerticalSourceScroll): Use print_source_lines
+ to update the current source line.
+
2002-09-01 Stephane Carrez <stcarrez@nerim.fr>
* tui-hooks.c (tui_detach_hook): New hook to know when a process dies.
data->stream = stream;
data->suppress_output = 0;
data->line = -1;
- data->start_of_line = 1;
+ data->start_of_line = 0;
return ui_out_new (&tui_ui_out_impl, data, flags);
}
if (l.lineNo <= 0)
l.lineNo = 1;
}
- if (identify_source_line (s, l.lineNo, 0, -1) == 1)
- tuiUpdateSourceWindowAsIs (srcWin, s, l, FALSE);
+
+ print_source_lines (s, l.lineNo, l.lineNo + 1, 0);
}
}