summaryrefslogtreecommitdiffstats
path: root/generic
Commit message (Collapse)AuthorAgeFilesLines
* Updated for 8.0.3welch1998-07-061-4/+3
|
* Undid the change to Tcl_EvalObjwelch1998-07-061-3/+2
|
* Merged changes between child workspace "/home/welch/ws/tcl8.0.3i" andwelch1998-07-062-3/+93
| | | | parent workspace "/home/welch/ws/tcl8.0.3".
* replaced the SCCS id string with %% keywordsescoffon1998-07-061-1/+1
|
* Exported {TclProc}CleanupProc, {Tcl}ProcDeleteProc, and {TclProc}InterpProc,escoffon1998-07-061-24/+16
| | | | for use by the TclPro compiler.
* replaced the SCCS id string with %% keywordsescoffon1998-07-061-1/+1
|
* Exported {TclProc}CleanupProc, {Tcl}ProcDeleteProc, and {TclProc}InterpProcescoffon1998-07-061-0/+4
| | | | from tclProc.c, for use by the TclPro compiler.
* Merged changes between child workspace "/home/escoffon/ws/tcl8.0" andescoffon1998-07-013-25/+201
| | | | parent workspace "/ws/tcl8.0".
* changed TclFindProc & TclIsProc to understand aliased commandsrjohnson1998-07-011-2/+14
|
* *** empty log message ***rjohnson1998-07-011-1/+1
|
* - modified to use the AuxDataType setup.escoffon1998-07-011-3/+5
|
* - added the AuxDataType stuffescoffon1998-07-011-13/+30
|
* Changed variable name "tclAlternateInitScript" to "tclPreInitScript".suresh1998-07-011-5/+4
|
* Added extern definition of variable 'tclAlternateInitScript' which is definedsuresh1998-07-011-0/+9
| | | | in the file(s) "<platform>/tcl<platform>Init.c".
* Updated for 8.0.3welch1998-06-291-7/+7
|
* Added Jans compatibility patchwelch1998-06-292-5/+10
|
* Fixed IsLocalScalarwelch1998-06-291-1/+8
|
* Initial revisionwelch1998-06-281-0/+423
|
* incr tcl updtaeswelch1998-06-282-9/+150
|
* Initial revisionwelch1998-06-271-0/+65
|
* plugin updateswelch1998-06-272-3/+32
|
* catch didn't compile non-local variables correctlystanton1998-06-251-38/+49
|
* lintstanton1998-06-251-1/+1
|
* fixed behavior of "array set" on initialization with an emtpy liststanton1998-06-181-33/+57
| | | | removed memory leak
* removed dead codestanton1998-06-181-3/+0
|
* added fix for foreach compile proc so it handles non-local names correctlystanton1998-06-181-30/+51
| | | | | fixed compile procs so they no longer corrupt the exception stack don't inline expressions when it is unsafe to do so
* fixed "info vars" and "info locals" to not report compiled temporary variablesstanton1998-06-181-66/+64
| | | | changed dictionary sort to use unsigned char comparisons
* Cleaned up prototype for 'Tcl_GetNameOfExecutable'.suresh1998-06-151-2/+2
|
* Added prototype for the new public routine 'Tcl_GetNameOfExecutable(...)'.suresh1998-06-121-1/+2
|
* Moved the definition of "char *tclExecutableName" to this file.suresh1998-06-121-1/+37
| | | | Added implementation for the new public routine 'Tcl_GetNameOfExecutable(...)'.
* Moved the definition of 'char *tclExecutableName' to the file 'tclUtil.c'suresh1998-06-121-11/+6
| | | | | and revised the routine 'InfoNameOfExecutableCmd()' to use the new public routine 'Tcl_GetNameOfExecutable(...)'.
* Added some ^L page breaks.suresh1998-06-121-3/+3
|
* Some code clean up to removed unnecesary pointer definitions.suresh1998-06-121-66/+103
| | | | Comments and "@@@" To-Do symbols removed.
* turn off check for shared source string in Tcl_ProcObjCmd if the bodyescoffon1998-06-101-2/+15
| | | | is a PRECOMPILED ByteCode object.
* - Added the flags field in a ByteCode struct, and added one flag:escoffon1998-06-101-0/+10
| | | | | TCL_BYTECODE_PRECOMPILED to mark ByteCodes generated from .tbc files - Added the TclGetInstructionTable procedure
* Restored the SCCS id string back to id stringsescoffon1998-06-101-1/+1
|
* Added the definition of the EXPORT macro, used to declare that someescoffon1998-06-101-0/+18
| | | | | symbols are to be exported from DLLs. This was added so that C packages can use a standard way of declaring exported symbols.
* - Added initialization of the flags field in ByteCodeescoffon1998-06-101-0/+26
| | | | - Added the TclGetInstructionTable procedure so that the table can be accessed
* replaced the SCCS id string in header to display idsescoffon1998-06-101-1/+1
|
* modified the check for no source string in Tcl_EvalObj to account forescoffon1998-06-101-1/+1
|
* fixed bug that caused file events to not be reported on buffered datastanton1998-06-091-8/+43
|
* Added function prototypes for 'TclAccess', 'TclStat', 'TclAccessInsertProc',suresh1998-06-041-0/+29
| | | | | | | 'TclAccessDeleteProc', 'TclStatInsertProc', 'TclStatDeleteProc', 'TclOpenFileChannelInsertProc', 'TclOpenFileChannelDeleteProc'. Also included are appropriate data structures for declaring the respective functions: 'TclAccessProc_', 'TclStatProc_', & 'TclOpenFileChannelProc_'.
* Added routiens to support testing of new routines ('TclStatInsertProc',suresh1998-06-041-0/+113
| | | | | | 'TclAccessInsertProc', 'TclOpenFileChannelInsertProc', etc.). The new test commads (e.g. "testTclStat", etc.) are excersized from the file "test/iOUtil.test'.
* Changed call references of 'stat(...)' to 'TclStat(...)' & 'access(...)' tosuresh1998-06-041-1/+444
| | | | | | | | | | | | | 'TclAccess(...)'. Added the "hookable" functions 'TclStat(...)', 'TclAccess(...)', & 'Tcl_OpenFileChannel(...)'. Added appropriate data structure to maintain the linked list of 'TclStat(...)', 'TclAccess(...)', & 'Tcl_OpenFileChannel(...)'. Added the appropriate "insert" and "delete" routines for each of these. A test file 'tests/iOUtil.test' has been written to test the hooking function- ality of each of the routines. 'tclInt.h' has been updated to include the function prototypes for all new functions.
* Changed call ref's from 'access(...)' to 'TclAccess(...)'.suresh1998-05-201-3/+3
|
* Changed call ref's from 'stat(...)' to 'TclStat(...)'.suresh1998-05-201-7/+8
|
* Changed call ref's of 'stat(...)' to 'TclStat(...)' & 'access(...)' tosuresh1998-05-201-6/+6
| | | | 'TclAccess(...)'.
* *** empty log message ***stanton1998-04-291-0/+1
|
* added call to TclpFinalizestanton1998-04-291-0/+1
|
* Initial revisionrjohnson1998-03-2656-0/+82403