diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-10-29 12:42:46 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-10-29 12:42:46 (GMT) |
commit | 75fd364ccf966e5c574757d6c67adfc33aafe418 (patch) | |
tree | d20de7258d084e510694984bbfaecfbd9b3e8c82 /generic/tclInt.h | |
parent | e0afc4ae97cf20337783b4f187d748ce8fa3e54b (diff) | |
download | tcl-75fd364ccf966e5c574757d6c67adfc33aafe418.zip tcl-75fd364ccf966e5c574757d6c67adfc33aafe418.tar.gz tcl-75fd364ccf966e5c574757d6c67adfc33aafe418.tar.bz2 |
Combine TCL_DD_SHORTEN_FLAG and TCL_DD_SHORTEST to be the same flag (which it is .... actually)
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index a4e6f55..6c92204 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -2875,18 +2875,14 @@ struct Tcl_LoadHandle_ { /* Flags for conversion of doubles to digit strings */ -#define TCL_DD_SHORTEST 0x4 - /* Use the shortest possible string */ #define TCL_DD_E_FORMAT 0x2 /* Use a fixed-length string of digits, * suitable for E format*/ #define TCL_DD_F_FORMAT 0x3 /* Use a fixed number of digits after the * decimal point, suitable for F format */ - -#define TCL_DD_SHORTEN_FLAG 0x4 - /* Allow return of a shorter digit string - * if it converts losslessly */ +#define TCL_DD_SHORTEST 0x4 + /* Use the shortest possible string */ #define TCL_DD_NO_QUICK 0x8 /* Debug flag: forbid quick FP conversion */ |