summaryrefslogtreecommitdiffstats
path: root/generic/tclTest.c
diff options
context:
space:
mode:
authorsebres <sebres@users.sourceforge.net>2019-03-05 18:23:26 (GMT)
committersebres <sebres@users.sourceforge.net>2019-03-05 18:23:26 (GMT)
commitf456cd9b3e6743bf15cd756bfc116153fa95605c (patch)
tree85e4e3121d93802d9d5df50157ead27f68ff7a43 /generic/tclTest.c
parent8c315fd31ff823b217374dd32577e04c42674249 (diff)
parentb930511d5b774c13f2cd22d7820ad0acf7069c39 (diff)
downloadtcl-f456cd9b3e6743bf15cd756bfc116153fa95605c.zip
tcl-f456cd9b3e6743bf15cd756bfc116153fa95605c.tar.gz
tcl-f456cd9b3e6743bf15cd756bfc116153fa95605c.tar.bz2
merge 8.7 (TIP#527, New measurement facilities in TCL: New command timerate, performance test suite)
Diffstat (limited to 'generic/tclTest.c')
-rw-r--r--generic/tclTest.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c
index 4ed4f6a..4953133 100644
--- a/generic/tclTest.c
+++ b/generic/tclTest.c
@@ -1702,7 +1702,7 @@ TestdelassocdataCmd(
* Parameters:
* fpval - Floating-point value to format.
* ndigits - Digit count to request from Tcl_DoubleDigits
- * type - One of 'shortest', 'Steele', 'e', 'f'
+ * type - One of 'shortest', 'e', 'f'
* shorten - Indicates that the 'shorten' flag should be passed in.
*
*-----------------------------------------------------------------------------
@@ -1720,14 +1720,12 @@ TestdoubledigitsObjCmd(void *unused,
{
static const char* options[] = {
"shortest",
- "Steele",
"e",
"f",
NULL
};
static const int types[] = {
TCL_DD_SHORTEST,
- TCL_DD_STEELE,
TCL_DD_E_FORMAT,
TCL_DD_F_FORMAT
};