diff options
author | nijtmans <nijtmans> | 2008-10-15 06:17:03 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2008-10-15 06:17:03 (GMT) |
commit | 9621a454a0bde1f84cef51026947815d4eb244b6 (patch) | |
tree | 20cca6f694fead4ac88a820249260a91c18a3387 /generic/tclListObj.c | |
parent | de27d1ee5e8ba5ad01354e36be8914a8303bf45d (diff) | |
download | tcl-9621a454a0bde1f84cef51026947815d4eb244b6.zip tcl-9621a454a0bde1f84cef51026947815d4eb244b6.tar.gz tcl-9621a454a0bde1f84cef51026947815d4eb244b6.tar.bz2 |
Add "const" to many internal
const tables, so those will be
put by the C-compiler in the
TEXT segment in stead of the
DATA segment. This makes those
table sharable in shared libraries.
Diffstat (limited to 'generic/tclListObj.c')
-rw-r--r-- | generic/tclListObj.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclListObj.c b/generic/tclListObj.c index 68db503..b8f9da7 100644 --- a/generic/tclListObj.c +++ b/generic/tclListObj.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclListObj.c,v 1.54 2008/10/05 22:12:20 kennykb Exp $ + * RCS: @(#) $Id: tclListObj.c,v 1.55 2008/10/15 06:17:04 nijtmans Exp $ */ #include "tclInt.h" @@ -38,7 +38,7 @@ static void UpdateStringOfList(Tcl_Obj *listPtr); * storage to avoid an auxiliary stack. */ -Tcl_ObjType tclListType = { +const Tcl_ObjType tclListType = { "list", /* name */ FreeListInternalRep, /* freeIntRepProc */ DupListInternalRep, /* dupIntRepProc */ @@ -1326,7 +1326,7 @@ TclLsetFlat( * WARNING: the macro TclGetIntForIndexM is not safe for * post-increments, avoid '*indexArray++' here. */ - + if (TclGetIntForIndexM(interp, *indexArray, elemCount - 1, &index) != TCL_OK) { /* ...the index we're trying to use isn't an index at all. */ @@ -1425,9 +1425,9 @@ TclLsetFlat( } if (result != TCL_OK) { - /* + /* * Error return; message is already in interp. Clean up - * any excess memory. + * any excess memory. */ if (retValuePtr != listPtr) { Tcl_DecrRefCount(retValuePtr); |