diff options
author | bch <brad.harder@gmail.com> | 2020-11-26 03:26:05 (GMT) |
---|---|---|
committer | bch <brad.harder@gmail.com> | 2020-11-26 03:26:05 (GMT) |
commit | 888a59788321731a3060797cac7db475eb6d9028 (patch) | |
tree | 1484579c475f9da88a128142aafa5436b096019e /generic | |
parent | e6d3b1557cc89901800f050c7a8fcc5fe20c99ab (diff) | |
download | tcl-888a59788321731a3060797cac7db475eb6d9028.zip tcl-888a59788321731a3060797cac7db475eb6d9028.tar.gz tcl-888a59788321731a3060797cac7db475eb6d9028.tar.bz2 |
use new TIP 494 64bit/#define in code comment to be consistent w/ code
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclStringObj.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclStringObj.c b/generic/tclStringObj.c index 9f46b9d..1ac0aeb 100644 --- a/generic/tclStringObj.c +++ b/generic/tclStringObj.c @@ -1162,7 +1162,7 @@ Tcl_AppendToObj( const char *bytes, /* Points to the bytes to append to the * object. */ size_t length) /* The number of bytes to append from "bytes". - * If -1, then append all bytes up to NUL + * If TCL_INDEX_NONE, then append all bytes up to NUL * byte. */ { Tcl_AppendLimitedToObj(objPtr, bytes, length, TCL_INDEX_NONE, NULL); |