summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-05-15 11:03:41 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-05-15 11:03:41 (GMT)
commit57e2c4bf7095c8d2277a617b9abd1132c8d75b35 (patch)
tree5aab389f3c0f2e22c668fcd3e03420726afc3338 /generic/tclInt.h
parentf3f30547f7fa96d875e7a5c299273a7e63e7ec50 (diff)
parent3c57bdf2836715776785db896771e09c365b0b10 (diff)
downloadtcl-57e2c4bf7095c8d2277a617b9abd1132c8d75b35.zip
tcl-57e2c4bf7095c8d2277a617b9abd1132c8d75b35.tar.gz
tcl-57e2c4bf7095c8d2277a617b9abd1132c8d75b35.tar.bz2
merge trunk
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index e837ca5..4a31044 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -1681,6 +1681,9 @@ typedef struct Command {
* CMD_HAS_EXEC_TRACES - 1 means that this command has at least one
* execution trace (as opposed to simple
* delete/rename traces) in its tracePtr list.
+ * CMD_COMPILES_EXPANDED - 1 means that this command has a compiler that
+ * can handle expansion (provided it is not the
+ * first word).
* TCL_TRACE_RENAME - A rename trace is in progress. Further
* recursive renames will not be traced.
* TCL_TRACE_DELETE - A delete trace is in progress. Further
@@ -1691,6 +1694,7 @@ typedef struct Command {
#define CMD_IS_DELETED 0x1
#define CMD_TRACE_ACTIVE 0x2
#define CMD_HAS_EXEC_TRACES 0x4
+#define CMD_COMPILES_EXPANDED 0x8
/*
*----------------------------------------------------------------