summaryrefslogtreecommitdiffstats
path: root/generic/tclLoad.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2024-05-13 15:41:44 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2024-05-13 15:41:44 (GMT)
commit444e06f208e9503a7e93cd68a51ed73c3c82298b (patch)
tree5b346cf1401c23c69c43d84a1eb6986e442c7dfd /generic/tclLoad.c
parent6b9279d4f7c2ab12d40ffbce3629b8c79bc94136 (diff)
downloadtcl-444e06f208e9503a7e93cd68a51ed73c3c82298b.zip
tcl-444e06f208e9503a7e93cd68a51ed73c3c82298b.tar.gz
tcl-444e06f208e9503a7e93cd68a51ed73c3c82298b.tar.bz2
Clean up a lot of small whitespace issues
This is the dullest commit ever. Sorry.
Diffstat (limited to 'generic/tclLoad.c')
-rw-r--r--generic/tclLoad.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/generic/tclLoad.c b/generic/tclLoad.c
index c5a181d..b336f5c 100644
--- a/generic/tclLoad.c
+++ b/generic/tclLoad.c
@@ -156,7 +156,8 @@ Tcl_LoadObjCmd(
&index) != TCL_OK) {
return TCL_ERROR;
}
- ++objv; --objc;
+ ++objv;
+ --objc;
if (LOAD_GLOBAL == index) {
flags |= TCL_LOAD_GLOBAL;
} else if (LOAD_LAZY == index) {
@@ -993,7 +994,7 @@ Tcl_StaticLibrary(
* already been loaded into the given
* interpreter by calling the appropriate init
* proc. */
- const char *prefix, /* Prefix. */
+ const char *prefix, /* Prefix. */
Tcl_LibraryInitProc *initProc,
/* Function to call to incorporate this
* library into a trusted interpreter. */
@@ -1185,7 +1186,7 @@ TclGetLoadedLibraries(
static void
LoadCleanupProc(
- TCL_UNUSED(void *), /* Pointer to first InterpLibrary structure
+ TCL_UNUSED(void *), /* Pointer to first InterpLibrary structure
* for interp. */
Tcl_Interp *interp)
{
@@ -1198,7 +1199,7 @@ LoadCleanupProc(
break;
}
libraryPtr = ipPtr->libraryPtr;
- UnloadLibrary(interp, interp, libraryPtr, 0 ,"", 1);
+ UnloadLibrary(interp, interp, libraryPtr, 0, "", 1);
}
}