summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.h
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2008-10-17 16:32:57 (GMT)
committerdgp <dgp@users.sourceforge.net>2008-10-17 16:32:57 (GMT)
commitc7737419286a172921b8edcbf3b4f40c02e02dae (patch)
tree28220fcac63f741bcf4e0650f857498e526120b2 /generic/tclCompile.h
parent842e3ff91428c72a2ce0d4df4889778af82f4b12 (diff)
downloadtcl-c7737419286a172921b8edcbf3b4f40c02e02dae.zip
tcl-c7737419286a172921b8edcbf3b4f40c02e02dae.tar.gz
tcl-c7737419286a172921b8edcbf3b4f40c02e02dae.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.
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