diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2002-07-19 12:31:09 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2002-07-19 12:31:09 (GMT) |
commit | d49b43a9ceee81dcee52620d4d2469df9624a457 (patch) | |
tree | 4bf2d4935b5e97743834dba726fe88543f867664 /ChangeLog | |
parent | 336c85fe81ce3721d86da085058d09a6322e2a30 (diff) | |
download | tcl-d49b43a9ceee81dcee52620d4d2469df9624a457.zip tcl-d49b43a9ceee81dcee52620d4d2469df9624a457.tar.gz tcl-d49b43a9ceee81dcee52620d4d2469df9624a457.tar.bz2 |
Global symbols are now all either prefixed with 'tcl' (or 'Tcl' or ...) or have file-scope.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -1,5 +1,23 @@ 2002-07-19 Donal K. Fellows <fellowsd@cs.man.ac.uk> + * generic/tclExecute.c, generic/tclCompile.c, generic/tclBasic.c: + * generic/tclCompile.h (builtinFuncTable, instructionTable): Added + prefix to these symbols because they are visible outside the Tcl + library. + + * generic/tclCompExpr.c (operatorTable): + * unix/tclUnixTime.c (tmKey): + * generic/tclIOUtil.c (theFilesystemEpoch, filesystemWantToModify, + filesystemIteratorsInProgress, filesystemOkToModify): Made these + variables static. + + * unix/tclUnixFile.c: Renamed nativeFilesystem to + * win/tclWinFile.c: tclNativeFilesystem and declared + * generic/tclIOUtil.c: it properly in tclInt.h + * generic/tclInt.h: + + * generic/tclUtf.c (totalBytes): Made this array static and const. + * generic/tclParse.c (typeTable): Made this array static and const. (Tcl_ParseBraces): Simplified error handling case so that scans are only performed when needed, and flags are simpler too. |