* tui-out.c (tui_out_new): Clear start_of_line.
authorStephane Carrez <stcarrez@nerim.fr>
Sun, 1 Sep 2002 16:12:52 +0000 (16:12 +0000)
committerStephane Carrez <stcarrez@nerim.fr>
Sun, 1 Sep 2002 16:12:52 +0000 (16:12 +0000)
* tuiSource.c (tuiVerticalSourceScroll): Use print_source_lines
to update the current source line.

gdb/tui/ChangeLog
gdb/tui/tui-out.c
gdb/tui/tuiSource.c

index 4a190ed..2031587 100644 (file)
@@ -1,5 +1,11 @@
 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.
        (tui_install_hooks): Install it.
        (tui_remove_hooks): Remove it.
index a8cc58b..71ce5e0 100644 (file)
@@ -398,7 +398,7 @@ tui_out_new (struct ui_file *stream)
   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);
 }
 
index 3c1b81e..0d59bf0 100644 (file)
@@ -359,7 +359,7 @@ tuiVerticalSourceScroll (TuiScrollDirection scrollDirection,
          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);
     }
 }