1999-02-11 Martin Hunt <hunt@cygnus.com>

* gdbtk-variable.c (variable_format): Enable binary format.
This commit is contained in:
Martin Hunt 1999-02-12 00:00:14 +00:00
parent 5bbb337f4a
commit eb9ea5de74
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
1999-02-11 Martin Hunt <hunt@cygnus.com>
* gdbtk-variable.c (variable_format): Enable binary format.
1999-02-11 Martin Hunt <hunt@cygnus.com>
* gdbtk-hooks.c: Change ALL Tcl_Eval calls in hooks to
call report_error() if there are errors.

View File

@ -1185,7 +1185,7 @@ variable_format (interp, objc, objv, var)
if (STREQN (fmt, "natural", len))
var->format = FORMAT_NATURAL;
else if (STREQN (fmt, "binary", len))
var->format = FORMAT_NATURAL;
var->format = FORMAT_BINARY;
else if (STREQN (fmt, "decimal", len))
var->format = FORMAT_DECIMAL;
else if (STREQN (fmt, "hexadecimal", len))