summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.h
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2008-10-17 16:32:57 (GMT)
committerdgp <dgp@noemail.net>2008-10-17 16:32:57 (GMT)
commit93997cb5919e4696c327383cb1ca93b9cb8726b9 (patch)
tree28220fcac63f741bcf4e0650f857498e526120b2 /generic/tclCompile.h
parentb296d5ba7a53b61b5eda08fda6ae7168e745428c (diff)
downloadtcl-93997cb5919e4696c327383cb1ca93b9cb8726b9.zip
tcl-93997cb5919e4696c327383cb1ca93b9cb8726b9.tar.gz
tcl-93997cb5919e4696c327383cb1ca93b9cb8726b9.tar.bz2
* generic/tclCompile.h: Declare the internal tclInstructionTable
* generic/tclExecute.c: to simply be "const", not CONST86. * generic/tclCmdAH.c: whitespace. * generic/tclCmdIL.c: Uninitialized variable warning. * generic/tclTest.c: const correctness warning. FossilOrigin-Name: c9106a2d20ebc3544524b33efb8448bf5a107c5f
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r--generic/tclCompile.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h
index aba100a..102a9ec 100644
--- a/generic/tclCompile.h
+++ b/generic/tclCompile.h
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclCompile.h,v 1.110 2008/10/10 04:09:27 das Exp $
+ * RCS: @(#) $Id: tclCompile.h,v 1.111 2008/10/17 16:32:58 dgp Exp $
*/
#ifndef _TCLCOMPILATION
@@ -694,7 +694,7 @@ typedef struct InstructionDesc {
/* The type of each operand. */
} InstructionDesc;
-MODULE_SCOPE InstructionDesc CONST86 tclInstructionTable[];
+MODULE_SCOPE InstructionDesc const tclInstructionTable[];
/*
* Compilation of some Tcl constructs such as if commands and the logical or