1999-02-11 Martin Hunt <hunt@cygnus.com>
* gdbtk-variable.c (variable_format): Enable binary format.
This commit is contained in:
parent
5bbb337f4a
commit
eb9ea5de74
|
@ -1,3 +1,7 @@
|
||||||
|
1999-02-11 Martin Hunt <hunt@cygnus.com>
|
||||||
|
|
||||||
|
* gdbtk-variable.c (variable_format): Enable binary format.
|
||||||
|
|
||||||
1999-02-11 Martin Hunt <hunt@cygnus.com>
|
1999-02-11 Martin Hunt <hunt@cygnus.com>
|
||||||
|
|
||||||
* gdbtk-hooks.c: Change ALL Tcl_Eval calls in hooks to
|
* gdbtk-hooks.c: Change ALL Tcl_Eval calls in hooks to
|
||||||
|
|
|
@ -1185,7 +1185,7 @@ variable_format (interp, objc, objv, var)
|
||||||
if (STREQN (fmt, "natural", len))
|
if (STREQN (fmt, "natural", len))
|
||||||
var->format = FORMAT_NATURAL;
|
var->format = FORMAT_NATURAL;
|
||||||
else if (STREQN (fmt, "binary", len))
|
else if (STREQN (fmt, "binary", len))
|
||||||
var->format = FORMAT_NATURAL;
|
var->format = FORMAT_BINARY;
|
||||||
else if (STREQN (fmt, "decimal", len))
|
else if (STREQN (fmt, "decimal", len))
|
||||||
var->format = FORMAT_DECIMAL;
|
var->format = FORMAT_DECIMAL;
|
||||||
else if (STREQN (fmt, "hexadecimal", len))
|
else if (STREQN (fmt, "hexadecimal", len))
|
||||||
|
|
Loading…
Reference in New Issue