summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixInit.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-06-18 22:41:30 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-06-18 22:41:30 (GMT)
commit7386a38e172efc6d56780bc272ba64c098a027a9 (patch)
tree9820165ca2a729857567712e412335ffd755bf4a /unix/tclUnixInit.c
parentaca8bd20f146c0567d43ae35f64ecb7e30c13aa4 (diff)
parent2d6b4ee950f8f0fbef4fd396b4b9a279250bc02c (diff)
downloadtcl-7386a38e172efc6d56780bc272ba64c098a027a9.zip
tcl-7386a38e172efc6d56780bc272ba64c098a027a9.tar.gz
tcl-7386a38e172efc6d56780bc272ba64c098a027a9.tar.bz2
Fix some more indenting
Diffstat (limited to 'unix/tclUnixInit.c')
-rw-r--r--unix/tclUnixInit.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c
index 81e3af5..63167c6 100644
--- a/unix/tclUnixInit.c
+++ b/unix/tclUnixInit.c
@@ -54,11 +54,11 @@ static const char *const processors[NUMPROCESSORS] = {
typedef struct {
union {
- unsigned int dwOemId;
- struct {
- int wProcessorArchitecture;
- int wReserved;
- };
+ unsigned int dwOemId;
+ struct {
+ int wProcessorArchitecture;
+ int wReserved;
+ };
};
unsigned int dwPageSize;
void *lpMinimumApplicationAddress;
@@ -860,15 +860,15 @@ TclpSetVariables(
}
Tcl_ObjSetVar2(interp, Tcl_NewStringObj("tcl_pkgPath", -1), NULL, pkgListObj, TCL_GLOBAL_ONLY);
{
- /* Some platforms build configure scripts expect ~ expansion so do that */
- Tcl_Obj *origPaths;
- Tcl_Obj *resolvedPaths;
-
- origPaths = Tcl_GetVar2Ex(interp, "tcl_pkgPath", NULL, TCL_GLOBAL_ONLY);
- resolvedPaths = TclResolveTildePathList(origPaths);
- if (resolvedPaths != origPaths && resolvedPaths != NULL) {
- Tcl_SetVar2Ex(interp, "tcl_pkgPath", NULL, resolvedPaths, TCL_GLOBAL_ONLY);
- }
+ /* Some platforms build configure scripts expect ~ expansion so do that */
+ Tcl_Obj *origPaths;
+ Tcl_Obj *resolvedPaths;
+
+ origPaths = Tcl_GetVar2Ex(interp, "tcl_pkgPath", NULL, TCL_GLOBAL_ONLY);
+ resolvedPaths = TclResolveTildePathList(origPaths);
+ if (resolvedPaths != origPaths && resolvedPaths != NULL) {
+ Tcl_SetVar2Ex(interp, "tcl_pkgPath", NULL, resolvedPaths, TCL_GLOBAL_ONLY);
+ }
}
#ifdef DJGPP