diff options
-rw-r--r-- | gdb/ChangeLog | 8 | ||||
-rw-r--r-- | gdb/Makefile.in | 6 | ||||
-rw-r--r-- | gdb/annotate.c | 2 | ||||
-rw-r--r-- | gdb/breakpoint.c | 2 |
4 files changed, 13 insertions, 5 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 61af1ce..4895a0f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,13 @@ Tue May 17 11:08:22 1994 Jim Kingdon (kingdon@lioth.cygnus.com) + * breakpoint.c (breakpoint_1): Fix typo. + + * annotate.c (annotate_field_end): Fix typo. + + * Makefile.in: Move annotate.o from COMMON_OBS to OBS. + + * Makefile.in (TSSTART): Remove; no longer used. + * utils.c (vfprintf_maybe_filtered, vfprintf_unfiltered): Call fputs_unfiltered and exit directly, rather than fatal. The latter calls vfprintf_unfiltered! diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 2277c05..7362b70 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -445,9 +445,9 @@ COMMON_OBS = version.o blockframe.o breakpoint.o findvar.o stack.o thread.o \ dwarfread.o mipsread.o stabsread.o core.o c-lang.o ch-lang.o m2-lang.o \ complaints.o typeprint.o c-typeprint.o ch-typeprint.o m2-typeprint.o \ c-valprint.o cp-valprint.o ch-valprint.o m2-valprint.o nlmread.o \ - serial.o mdebugread.o os9kread.o annotate.o + serial.o mdebugread.o os9kread.o -OBS = $(COMMON_OBS) main.o utils.o +OBS = $(COMMON_OBS) main.o utils.o annotate.o LIBGDB_OBS = $(COMMON_OBS) libmain.o libutils.o @@ -455,8 +455,6 @@ TSOBS = inflow.o NTSOBS = standalone.o -TSSTART = /lib/crt0.o - NTSSTART = kdb-start.o SUBDIRS = doc testsuite diff --git a/gdb/annotate.c b/gdb/annotate.c index 4276b84..0a73fb5 100644 --- a/gdb/annotate.c +++ b/gdb/annotate.c @@ -201,7 +201,7 @@ void annotate_field_end () { if (annotation_level > 1) - printf_filtered ("\n\032\032field-value\n"); + printf_filtered ("\n\032\032field-end\n"); } void diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index a697560..9363055 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -1529,6 +1529,8 @@ breakpoint_1 (bnum, allflag) if (!found_a_breakpoint++) { + annotate_breakpoints_headers (); + annotate_field (0); printf_filtered ("Num "); annotate_field (1); |