From ecebd69348ff47a1e17674862873b607615420bb Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Thu, 16 May 1996 04:49:12 +0000 Subject: [PATCH] * top.c (read_next_line): Fix thinkos. From Don Seeley. Net buglet. --- gdb/ChangeLog | 2 ++ gdb/top.c | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f92d13d..23fe27d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -7,6 +7,8 @@ end-sanitize-gdbtk Wed May 15 08:25:12 1996 Jeffrey A Law (law@cygnus.com) + * top.c (read_next_line): Fix thinkos. From Don Seeley. + * coffread.c (coff_symtab_read): Handle C_LABEL symbols like C_STAT symbols. * h8300-tdep.c (h8300_pop_frame): Reset $sp and $pc correctly. diff --git a/gdb/top.c b/gdb/top.c index 40a4b34..be7db39 100644 --- a/gdb/top.c +++ b/gdb/top.c @@ -2183,7 +2183,7 @@ read_next_line (command) *command = build_command_line (while_control, p + 6); else if (p1 - p > 2 && !strncmp (p, "if", 2)) *command = build_command_line (if_control, p + 3); - else if (p1 - p == 5 && !strncmp (p, "loop_break", 5)) + else if (p1 - p == 10 && !strncmp (p, "loop_break", 10)) { *command = (struct command_line *) xmalloc (sizeof (struct command_line)); @@ -2193,7 +2193,7 @@ read_next_line (command) (*command)->body_count = 0; (*command)->body_list = NULL; } - else if (p1 - p == 8 && !strncmp (p, "loop_continue", 8)) + else if (p1 - p == 13 && !strncmp (p, "loop_continue", 13)) { *command = (struct command_line *) xmalloc (sizeof (struct command_line)); -- 2.7.4