diff options
| author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-04-23 12:30:28 (GMT) |
|---|---|---|
| committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-04-23 12:30:28 (GMT) |
| commit | 6e14d4b037124606898f47db23fd11da4db0b27e (patch) | |
| tree | 36a35c68a8d8f61e3b2e51e236b86513e4138025 /generic/tclCompile.c | |
| parent | f0d0884f48e41e0c38d424a48037709f7a4917e0 (diff) | |
| download | tcl-6e14d4b037124606898f47db23fd11da4db0b27e.zip tcl-6e14d4b037124606898f47db23fd11da4db0b27e.tar.gz tcl-6e14d4b037124606898f47db23fd11da4db0b27e.tar.bz2 | |
make some more internal tables const
On cygwin, install dll's in /usr/bin, not in /usr/lib
Diffstat (limited to 'generic/tclCompile.c')
| -rw-r--r-- | generic/tclCompile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c index e281a0a..1ec7c58 100644 --- a/generic/tclCompile.c +++ b/generic/tclCompile.c @@ -267,7 +267,7 @@ InstructionDesc tclInstructionTable[] = { * stacked objs: stktop is old value, next is new element value, next * come (operand-2) indices; pushes the new value. */ - {0} + {0, 0, 0, 0, {OPERAND_NONE}} }; /* |
