-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.
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));
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));
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 */
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;
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);
static void
null_fputs (text, stream)
const char *text;
- FILE *stream;
+ GDB_FILE *stream;
{
return;
}