Skip to content

Commit 3506dce

Browse files
author
ripley
committed
tweak
git-svn-id: https://svn.r-project.org/R/trunk@88345 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent e447769 commit 3506dce

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/library/tcltk/R/utils.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,8 @@ tk_messageBox <-
229229
## aadded for R 3.2.0, enhanced for R 4.6.0
230230
##tclVersion <- function() as.character(tcl("info", "patchlevel"))
231231

232-
tclVersion <- function(with_parselevel = FALSE)
232+
tclVersion <- function(with_patchlevel = FALSE)
233233
{
234-
if(isTRUE(with_parselevel)) as.character(tcl("info", "patchlevel"))
234+
if(isTRUE(with_patchlevel)) as.character(tcl("info", "patchlevel"))
235235
else as.character(tcl("info", "tclversion"))
236236
}

src/library/tcltk/man/TclInterface.Rd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ is.tclObj(x)
113113

114114
addTclPath(path = ".")
115115
tclRequire(package, warn = TRUE)
116-
tclVersion(with_parselevel = FALSE)
116+
tclVersion(with_patchlevel = FALSE)
117117
}
118118
\arguments{
119119
\item{objv}{a named vector of Tcl objects}
@@ -131,7 +131,7 @@ tclVersion(with_parselevel = FALSE)
131131
\item{warn}{logical. Warn if not found?}
132132
\item{...}{Additional arguments. See below.}
133133
\item{init}{initialization value}
134-
\item{with_parselevel}{logical: should the \sQuote{parse level} be included?}
134+
\item{with_patchlevel}{logical: should the \sQuote{patch level} be included?}
135135
}
136136
\details{
137137
Many of these functions are not intended for general use but are used

0 commit comments

Comments
 (0)