From 8b7fcda2744145f2380af01c9db8e11986f7af6d Mon Sep 17 00:00:00 2001 From: Hannes Domani Date: Sun, 22 Dec 2019 14:58:22 +0100 Subject: Fix search in TUI The variable last_line_listed is never set when print_source_lines_base is called in TUI mode, so the search always started from the last line printed outside of TUI mode. gdb/ChangeLog: 2020-01-06 Hannes Domani * source.c (print_source_lines_base): Set last_line_listed. --- gdb/source.c | 1 + 1 file changed, 1 insertion(+) (limited to 'gdb/source.c') diff --git a/gdb/source.c b/gdb/source.c index 7230c77..1bc98d3 100644 --- a/gdb/source.c +++ b/gdb/source.c @@ -1232,6 +1232,7 @@ print_source_lines_base (struct symtab *s, int line, int stopline, loc->set (s, line); first_line_listed = line; + last_line_listed = line; /* If printing of source lines is disabled, just print file and line number. */ -- cgit v1.1