summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-04-14 09:05:01 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-04-14 09:05:01 (GMT)
commit73eb386816168576a6c42eea64be0b214e6d7d6c (patch)
tree632320ff8144756f72cf3850bede8c0170fc5c5c /generic/tclBasic.c
parentbc97ae8a02bb8363f85b25501b9aa125c5b344cd (diff)
downloadtcl-73eb386816168576a6c42eea64be0b214e6d7d6c.zip
tcl-73eb386816168576a6c42eea64be0b214e6d7d6c.tar.gz
tcl-73eb386816168576a6c42eea64be0b214e6d7d6c.tar.bz2
Don't use "0%o" format in test-cases, as it suggest's it's the normal way to format octal numbers: it isn't. Better use "%#o".
Add tests for "format" and "scan" corner-cases which weren't documented (except in TIP's) neither had tests before.
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r--generic/tclBasic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index f604ac1..0486383 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -8765,7 +8765,7 @@ TclNREvalList(
int objc;
Tcl_Obj **objv;
Tcl_Obj *listPtr = data[0];
-
+
Tcl_IncrRefCount(listPtr);
TclMarkTailcall(interp);