diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-05-26 11:23:19 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-05-26 11:23:19 (GMT) |
commit | 0c51650ae9c6c9725068ecfd058275d4aa4bb024 (patch) | |
tree | b5ee75fc3272dcc1552d441e1ce13ac2716aabda | |
parent | 9d13d5e64b0b91da24a22b1ac9e2d3bc403c433e (diff) | |
parent | 6d2f85de207c0d6108fd44fba6ccf039cd8d858d (diff) | |
download | tcl-0c51650ae9c6c9725068ecfd058275d4aa4bb024.zip tcl-0c51650ae9c6c9725068ecfd058275d4aa4bb024.tar.gz tcl-0c51650ae9c6c9725068ecfd058275d4aa4bb024.tar.bz2 |
Fix [a73c79081e]: Doc fix in tcl.h. Recommend int32_t in stead of wchar_t
-rw-r--r-- | generic/tcl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index 577f1cb..4bf1464 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -2136,7 +2136,7 @@ typedef struct Tcl_EncodingType { #if TCL_UTF_MAX > 3 /* * int isn't 100% accurate as it should be a strict 4-byte value - * (perhaps wchar_t). ILP64/SILP64 systems may have troubles. The + * (perhaps int32_t). ILP64/SILP64 systems may have troubles. The * size of this value must be reflected correctly in regcustom.h. */ typedef int Tcl_UniChar; |