summaryrefslogtreecommitdiffstats
path: root/generic/tclCompCmds.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2024-06-04 15:35:14 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2024-06-04 15:35:14 (GMT)
commit14e9a4e0bda3c86ac11baf3c11f900a5837ea70a (patch)
treeea245cdd3ace1d0ea075a51e59d0b5044fc86bf2 /generic/tclCompCmds.c
parent1719e80d015d40d514bb9209a921525b2d667d9c (diff)
downloadtcl-14e9a4e0bda3c86ac11baf3c11f900a5837ea70a.zip
tcl-14e9a4e0bda3c86ac11baf3c11f900a5837ea70a.tar.gz
tcl-14e9a4e0bda3c86ac11baf3c11f900a5837ea70a.tar.bz2
Space before tab is an extremely unlikely to be correct indentation pattern
Diffstat (limited to 'generic/tclCompCmds.c')
-rw-r--r--generic/tclCompCmds.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/generic/tclCompCmds.c b/generic/tclCompCmds.c
index 6d3eabd..001310b 100644
--- a/generic/tclCompCmds.c
+++ b/generic/tclCompCmds.c
@@ -379,9 +379,9 @@ TclCompileArraySetCmd(
localIndex = TclFindCompiledLocal(varTokenPtr->start,
varTokenPtr->size, 1, envPtr);
PushStringLiteral(envPtr, "0");
- TclEmitInstInt4(INST_REVERSE, 2, envPtr);
- TclEmitInstInt4(INST_UPVAR, localIndex, envPtr);
- TclEmitOpcode(INST_POP, envPtr);
+ TclEmitInstInt4(INST_REVERSE, 2, envPtr);
+ TclEmitInstInt4(INST_UPVAR, localIndex, envPtr);
+ TclEmitOpcode(INST_POP, envPtr);
}
/*
@@ -3415,10 +3415,10 @@ TclCompileFormatCmd(
* to a local scalar variable name.
*
* Results:
- * Returns the non-negative integer index value into the table of
- * compiled locals corresponding to a local scalar variable name.
- * If the arguments passed in do not identify a local scalar variable
- * then return TCL_INDEX_NONE.
+ * Returns the non-negative integer index value into the table of
+ * compiled locals corresponding to a local scalar variable name.
+ * If the arguments passed in do not identify a local scalar variable
+ * then return TCL_INDEX_NONE.
*
* Side effects:
* May add an entry into the table of compiled locals.