summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2009-08-19 14:25:37 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2009-08-19 14:25:37 (GMT)
commit292a05b86ebbf9c8aae085fb829cb63a1086673e (patch)
tree126107668b30e68eec270ab8176dc7ee5d3169a3 /generic/tclInt.h
parentaaf5ab291c239170c32f62ed8a800ec13b863484 (diff)
downloadtcl-292a05b86ebbf9c8aae085fb829cb63a1086673e.zip
tcl-292a05b86ebbf9c8aae085fb829cb63a1086673e.tar.gz
tcl-292a05b86ebbf9c8aae085fb829cb63a1086673e.tar.bz2
Formatting corrections
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index a381678..93dbf01 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -15,7 +15,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclInt.h,v 1.434 2009/08/16 12:25:06 nijtmans Exp $
+ * RCS: @(#) $Id: tclInt.h,v 1.435 2009/08/19 14:26:18 dkf Exp $
*/
#ifndef _TCLINT
@@ -2621,8 +2621,8 @@ MODULE_SCOPE Tcl_ObjCmdProc TclNRTailcallObjCmd;
MODULE_SCOPE Tcl_ObjCmdProc TclNRCoroutineObjCmd;
MODULE_SCOPE Tcl_ObjCmdProc TclNRYieldObjCmd;
-MODULE_SCOPE void TclClearTailcall(Tcl_Interp *interp,
- struct TEOV_callback *tailcallPtr);
+MODULE_SCOPE void TclClearTailcall(Tcl_Interp *interp,
+ struct TEOV_callback *tailcallPtr);
/*
* This structure holds the data for the various iteration callbacks used to
@@ -2635,11 +2635,11 @@ MODULE_SCOPE void TclClearTailcall(Tcl_Interp *interp,
*/
typedef struct ForIterData {
- Tcl_Obj* cond; /* loop condition expression */
- Tcl_Obj* body; /* loop body */
- Tcl_Obj* next; /* loop step script, NULL for 'while' */
- const char* msg; /* error message part */
- int word; /* Index of the body script in the command */
+ Tcl_Obj *cond; /* Loop condition expression. */
+ Tcl_Obj *body; /* Loop body. */
+ Tcl_Obj *next; /* Loop step script, NULL for 'while'. */
+ const char *msg; /* Error message part. */
+ int word; /* Index of the body script in the command */
} ForIterData;
/*