summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbch <brad.harder@gmail.com>2022-08-26 17:19:02 (GMT)
committerbch <brad.harder@gmail.com>2022-08-26 17:19:02 (GMT)
commit2f0f646a076e6e374ff7a125957de91202178e07 (patch)
treedd121df1380034a8258721331c75bc7b01dce09b
parentabe4d4223da114bb82cca35dc22618f25847668f (diff)
downloadtcl-2f0f646a076e6e374ff7a125957de91202178e07.zip
tcl-2f0f646a076e6e374ff7a125957de91202178e07.tar.gz
tcl-2f0f646a076e6e374ff7a125957de91202178e07.tar.bz2
Tcl_GetVersion(3) - we just use int for components now, not Tcl_ReleaseType; Cleanup stray tag.
-rw-r--r--doc/GetVersion.33
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/GetVersion.3 b/doc/GetVersion.3
index 3672382..b973044 100644
--- a/doc/GetVersion.3
+++ b/doc/GetVersion.3
@@ -15,14 +15,13 @@ Tcl_GetVersion \- get the version of the library at runtime
.sp
\fBTcl_GetVersion\fR(\fImajor, minor, patchLevel, type\fR)
.SH ARGUMENTS
-.AS Tcl_ReleaseType *patchLevel out
.AP int *major out
Major version number of the Tcl library.
.AP int *minor out
Minor version number of the Tcl library.
.AP int *patchLevel out
The patch level of the Tcl library (or alpha or beta number).
-.AP Tcl_ReleaseType *type out
+.AP int *type out
The type of release, also indicates the type of patch level. Can be
one of \fBTCL_ALPHA_RELEASE\fR, \fBTCL_BETA_RELEASE\fR, or
\fBTCL_FINAL_RELEASE\fR.