diff options
author | Jim Ingham <jingham@apple.com> | 1999-01-28 06:11:03 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 1999-01-28 06:11:03 +0000 |
commit | 31262a404a83ef595d78e3bf24dd92b11b2cc47b (patch) | |
tree | 884a391cd48850261f05fd11d18e78553d6468f9 /gdb | |
parent | c98fe0c11974772749686145f3172dc8c9004909 (diff) | |
download | fsf-binutils-gdb-31262a404a83ef595d78e3bf24dd92b11b2cc47b.zip fsf-binutils-gdb-31262a404a83ef595d78e3bf24dd92b11b2cc47b.tar.gz fsf-binutils-gdb-31262a404a83ef595d78e3bf24dd92b11b2cc47b.tar.bz2 |
1999-01-27 James Ingham <jingham@cygnus.com>
* gdbtk-wrapper.c: Missed a couple of places where FILE->GDB_FILE
in the fputs_unfiltered_hook needed to propagate.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 2 | ||||
-rw-r--r-- | gdb/ChangeLog-gdbtk | 7 | ||||
-rw-r--r-- | gdb/gdbtk-variable.c | 14 |
3 files changed, 13 insertions, 10 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4b1fb9b..1ddf58e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,7 +1,5 @@ 1999-01-27 James Ingham <jingham@cygnus.com> - Merging changes in from gdbtk-980810-branch: - * typeprint.c (whatis_exp): Remove static declaration. Wed Jan 27 16:50:25 1999 Elena Zannoni <ezannoni@kwikemart.cygnus.com> diff --git a/gdb/ChangeLog-gdbtk b/gdb/ChangeLog-gdbtk index 55d8255..5d01308 100644 --- a/gdb/ChangeLog-gdbtk +++ b/gdb/ChangeLog-gdbtk @@ -1,4 +1,9 @@ -M1999-01-27 James Ingham <jingham@cygnus.com> +1999-01-27 James Ingham <jingham@cygnus.com> + + * gdbtk-wrapper.c: Missed a couple of places where FILE->GDB_FILE + in the fputs_unfiltered_hook needed to propagate. + +1999-01-27 James Ingham <jingham@cygnus.com> Merging in changes from gdbtk-980810 - the Itcl3 gdb branch. diff --git a/gdb/gdbtk-variable.c b/gdb/gdbtk-variable.c index 9ed6a10..5a3220d 100644 --- a/gdb/gdbtk-variable.c +++ b/gdb/gdbtk-variable.c @@ -199,9 +199,9 @@ static int call_gdb_type_print PARAMS ((value_ptr)); static int call_gdb_val_print PARAMS ((value_ptr, int)); -static void variable_fputs PARAMS ((const char *, FILE *)); +static void variable_fputs PARAMS ((const char *, GDB_FILE *)); -static void null_fputs PARAMS ((const char *, FILE *)); +static void null_fputs PARAMS ((const char *, GDB_FILE *)); static int my_value_equal PARAMS ((gdb_variable *, value_ptr)); @@ -528,7 +528,7 @@ create_variable (name, real_name, pc) value_ptr mark; struct frame_info *fi, *old_fi; struct block *block; - void (*old_fputs) PARAMS ((const char *, FILE *)); + void (*old_fputs) PARAMS ((const char *, GDB_FILE *)); gdb_result r; var = (gdb_variable *) xmalloc (sizeof (gdb_variable)); @@ -1446,7 +1446,7 @@ static int call_gdb_type_print (val) value_ptr val; { - void (*old_hook) PARAMS ((const char *, FILE *)); + void (*old_hook) PARAMS ((const char *, GDB_FILE *)); int result; /* Save the old hook and install new hook */ @@ -1474,7 +1474,7 @@ call_gdb_val_print (val, format) value_ptr val; int format; { - void (*old_hook) PARAMS ((const char *, FILE *)); + void (*old_hook) PARAMS ((const char *, GDB_FILE *)); gdb_result r; int result; @@ -1512,7 +1512,7 @@ call_gdb_val_print (val, format) static void variable_fputs (text, stream) const char *text; - FILE *stream; + GDB_FILE *stream; { /* Just append everything to the fputs_obj... Issues with stderr/stdout? */ Tcl_AppendToObj (fputs_obj, (char *) text, -1); @@ -1523,7 +1523,7 @@ variable_fputs (text, stream) static void null_fputs (text, stream) const char *text; - FILE *stream; + GDB_FILE *stream; { return; } |