diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-05-26 22:36:21 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-05-26 22:36:21 (GMT) |
commit | 4e676d5250707f9f54b690772aa28527abbc3f82 (patch) | |
tree | 3fdc0d2d6c048a42bd6ae555d0c453f15dd34c71 | |
parent | 0e71952f875f6b305ed4b7505a4d05afa4249dc5 (diff) | |
parent | cdddf2fe34de8e6c81fdc161711ed9adc27692c7 (diff) | |
download | tcl-4e676d5250707f9f54b690772aa28527abbc3f82.zip tcl-4e676d5250707f9f54b690772aa28527abbc3f82.tar.gz tcl-4e676d5250707f9f54b690772aa28527abbc3f82.tar.bz2 |
Merge 8.6
-rw-r--r-- | .github/workflows/linux-build.yml | 2 | ||||
-rw-r--r-- | .github/workflows/mac-build.yml | 4 | ||||
-rw-r--r-- | .github/workflows/onefiledist.yml | 8 | ||||
-rw-r--r-- | .github/workflows/win-build.yml | 4 | ||||
-rw-r--r-- | doc/msgcat.n | 2 | ||||
-rw-r--r-- | generic/tclDate.c | 2 | ||||
-rw-r--r-- | generic/tclGetDate.y | 2 |
7 files changed, 12 insertions, 12 deletions
diff --git a/.github/workflows/linux-build.yml b/.github/workflows/linux-build.yml index f5edb60..8562bb5 100644 --- a/.github/workflows/linux-build.yml +++ b/.github/workflows/linux-build.yml @@ -21,7 +21,7 @@ jobs: working-directory: unix steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Prepare run: | touch tclStubInit.c tclOOStubInit.c tclOOScript.h diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index 5077bf3..1ec784a 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -11,7 +11,7 @@ jobs: working-directory: macosx steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Prepare run: | touch tclStubInit.c tclOOStubInit.c tclOOScript.h @@ -41,7 +41,7 @@ jobs: working-directory: unix steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Prepare run: | touch tclStubInit.c tclOOStubInit.c tclOOScript.h diff --git a/.github/workflows/onefiledist.yml b/.github/workflows/onefiledist.yml index 05ca83c..c4212d4 100644 --- a/.github/workflows/onefiledist.yml +++ b/.github/workflows/onefiledist.yml @@ -11,7 +11,7 @@ jobs: shell: bash steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Prepare run: | touch generic/tclStubInit.c generic/tclOOStubInit.c @@ -46,9 +46,9 @@ jobs: shell: bash steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Checkout create-dmg - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: create-dmg/create-dmg ref: v1.0.8 @@ -116,7 +116,7 @@ jobs: msystem: UCRT64 install: git mingw-w64-ucrt-x86_64-toolchain make zip - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Prepare run: | touch generic/tclStubInit.c generic/tclOOStubInit.c diff --git a/.github/workflows/win-build.yml b/.github/workflows/win-build.yml index 6eb1694..ba4e5ba 100644 --- a/.github/workflows/win-build.yml +++ b/.github/workflows/win-build.yml @@ -23,7 +23,7 @@ jobs: # Using powershell means we need to explicitly stop on failure steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Init MSVC uses: ilammy/msvc-dev-cmd@v1 - name: Build ${{ matrix.cfgopt }} @@ -68,7 +68,7 @@ jobs: msystem: MINGW64 install: git mingw-w64-x86_64-toolchain make - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Prepare run: | touch tclStubInit.c tclOOStubInit.c tclOOScript.h diff --git a/doc/msgcat.n b/doc/msgcat.n index ac6dde7..76d275b 100644 --- a/doc/msgcat.n +++ b/doc/msgcat.n @@ -73,7 +73,7 @@ the application source code. New languages or locales may be provided by adding a new file to the message catalog. .PP -\fBmsgcat\fR distinguises packages by its namespace. +\fBmsgcat\fR distinguishes packages by its namespace. Each package has its own message catalog and configuration settings in \fBmsgcat\fR. .PP A \fIlocale\fR is a specification string describing a user language like \fBde_ch\fR for Swiss German. diff --git a/generic/tclDate.c b/generic/tclDate.c index adc7fb9..edf069a 100644 --- a/generic/tclDate.c +++ b/generic/tclDate.c @@ -2745,7 +2745,7 @@ int TclClockOldscanObjCmd( TCL_UNUSED(void *), Tcl_Interp *interp, /* Tcl interpreter */ - int objc, /* Count of paraneters */ + int objc, /* Count of parameters */ Tcl_Obj *const *objv) /* Parameters */ { Tcl_Obj *result, *resultElement; diff --git a/generic/tclGetDate.y b/generic/tclGetDate.y index 0a5a11e..e85184b 100644 --- a/generic/tclGetDate.y +++ b/generic/tclGetDate.y @@ -961,7 +961,7 @@ int TclClockOldscanObjCmd( TCL_UNUSED(void *), Tcl_Interp *interp, /* Tcl interpreter */ - int objc, /* Count of paraneters */ + int objc, /* Count of parameters */ Tcl_Obj *const *objv) /* Parameters */ { Tcl_Obj *result, *resultElement; |