summaryrefslogtreecommitdiffstats
path: root/generic/tclRegexp.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2024-06-01 16:13:39 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2024-06-01 16:13:39 (GMT)
commitf176fcdf93951d96f0d097343aa76bc97f6fafe0 (patch)
tree528ef69b321212a720a4ab82576c88bfcee3621e /generic/tclRegexp.c
parentd583a8f017ac344a3885545b94db1bdaf2f89913 (diff)
downloadtcl-f176fcdf93951d96f0d097343aa76bc97f6fafe0.zip
tcl-f176fcdf93951d96f0d097343aa76bc97f6fafe0.tar.gz
tcl-f176fcdf93951d96f0d097343aa76bc97f6fafe0.tar.bz2
Some tidying up, mostly of indentation
Diffstat (limited to 'generic/tclRegexp.c')
-rw-r--r--generic/tclRegexp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclRegexp.c b/generic/tclRegexp.c
index 04f060b..caf6461 100644
--- a/generic/tclRegexp.c
+++ b/generic/tclRegexp.c
@@ -103,11 +103,11 @@ static int SetRegexpFromAny(Tcl_Interp *interp, Tcl_Obj *objPtr);
*/
const Tcl_ObjType tclRegexpType = {
- "regexp", /* name */
- FreeRegexpInternalRep, /* freeIntRepProc */
- DupRegexpInternalRep, /* dupIntRepProc */
- NULL, /* updateStringProc */
- SetRegexpFromAny, /* setFromAnyProc */
+ "regexp", /* name */
+ FreeRegexpInternalRep, /* freeIntRepProc */
+ DupRegexpInternalRep, /* dupIntRepProc */
+ NULL, /* updateStringProc */
+ SetRegexpFromAny, /* setFromAnyProc */
TCL_OBJTYPE_V0
};