From: Jeff Johnston Date: Wed, 17 Dec 2003 22:21:02 +0000 (+0000) Subject: 2003-12-17 Jeff Johnston X-Git-Tag: cagney_bigcore-20040122-branchpoint~444 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bffe1ece0e72e008cdc9813e1f0a2517ef0ff2e7;p=external%2Fbinutils.git 2003-12-17 Jeff Johnston * symtab.c (decode_line_spec): Change call to decode_line_1. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4878139..562ca3c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2003-12-17 Jeff Johnston + * symtab.c (decode_line_spec): Change call to decode_line_1. + +2003-12-17 Jeff Johnston + * linespec.h (decode_line_1): Add new not_found_ptr parameter. * linespec.c (decode_line_1): Add new parameter. Pass on new parameter to decode_variable and symtab_from_filename diff --git a/gdb/symtab.c b/gdb/symtab.c index 6e35e84..1d7b396 100644 --- a/gdb/symtab.c +++ b/gdb/symtab.c @@ -3868,7 +3868,7 @@ decode_line_spec (char *string, int funfirstline) sals = decode_line_1 (&string, funfirstline, cursal.symtab, cursal.line, - (char ***) NULL); + (char ***) NULL, NULL); if (*string) error ("Junk at end of line specification: %s", string);