Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | plugin updates | welch | 1998-06-27 | 13 | -198/+216 |
| | |||||
* | *** empty log message *** | stanton | 1998-06-25 | 1 | -0/+10 |
| | |||||
* | catch didn't compile non-local variables correctly | stanton | 1998-06-25 | 1 | -38/+49 |
| | |||||
* | lint | stanton | 1998-06-25 | 2 | -2/+3 |
| | |||||
* | Added an additional env. var. ("tcl_pkgLibrary") that is searched prior to all | suresh | 1998-06-23 | 2 | -0/+6 |
| | | | | other locations for the "tk.tcl" file. This facilitates application packaging. | ||||
* | Typo fix | surles | 1998-06-22 | 1 | -1/+1 |
| | |||||
* | put the DLLs, LIBs, and EXEs in the Debug/Release subdirs rather than | escoffon | 1998-06-18 | 1 | -21/+27 |
| | | | | in win. | ||||
* | Added changes to support builds of different configurations in parallel: | escoffon | 1998-06-18 | 1 | -20/+31 |
| | | | | | | | | - the NODEBUG flag controls Debug/Release builds - different values of NODEBUG create temp files in either Debug or Release subdirectories. - Debug DLLs and executables follow the Windows convention of a 'd' at the end of the name (e.g. tcl80d.dll) | ||||
* | *** empty log message *** | stanton | 1998-06-18 | 1 | -0/+21 |
| | |||||
* | fixed bad array bounds checks | stanton | 1998-06-18 | 1 | -11/+19 |
| | | | | added performance boost for small values | ||||
* | *** empty log message *** | stanton | 1998-06-18 | 8 | -9/+132 |
| | |||||
* | remove tmp file | stanton | 1998-06-18 | 1 | -0/+1 |
| | |||||
* | fixed behavior of "array set" on initialization with an emtpy list | stanton | 1998-06-18 | 1 | -33/+57 |
| | | | | removed memory leak | ||||
* | removed dead code | stanton | 1998-06-18 | 1 | -3/+0 |
| | |||||
* | added fix for foreach compile proc so it handles non-local names correctly | stanton | 1998-06-18 | 1 | -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 variables | stanton | 1998-06-18 | 1 | -66/+64 |
| | | | | changed dictionary sort to use unsigned char comparisons | ||||
* | changed size of static buffers in tclUnixInit to ensure that they are | stanton | 1998-06-18 | 1 | -2/+2 |
| | | | | large enough for any TCL_LIBRARY or TCL_PACKAGE_PATH | ||||
* | minor HPUX tweak | stanton | 1998-06-18 | 1 | -1/+1 |
| | |||||
* | added SHLIB_PATH to test targets | stanton | 1998-06-18 | 1 | -0/+2 |
| | |||||
* | *** empty log message *** | stanton | 1998-06-17 | 1 | -0/+44 |
| | |||||
* | fixed behavior of Tcl_FindExecutable on null path elements | stanton | 1998-06-17 | 1 | -1/+10 |
| | |||||
* | Initial revision | stanton | 1998-06-17 | 1 | -0/+66 |
| | |||||
* | added code to handle null arguments | stanton | 1998-06-15 | 1 | -5/+11 |
| | |||||
* | *** empty log message *** | stanton | 1998-06-15 | 1 | -1/+12 |
| | |||||
* | Cleaned up prototype for 'Tcl_GetNameOfExecutable'. | suresh | 1998-06-15 | 1 | -2/+2 |
| | |||||
* | Added prototype for the new public routine 'Tcl_GetNameOfExecutable(...)'. | suresh | 1998-06-12 | 1 | -1/+2 |
| | |||||
* | Moved the definition of "char *tclExecutableName" to this file. | suresh | 1998-06-12 | 1 | -1/+37 |
| | | | | Added implementation for the new public routine 'Tcl_GetNameOfExecutable(...)'. | ||||
* | Moved the definition of 'char *tclExecutableName' to the file 'tclUtil.c' | suresh | 1998-06-12 | 1 | -11/+6 |
| | | | | | and revised the routine 'InfoNameOfExecutableCmd()' to use the new public routine 'Tcl_GetNameOfExecutable(...)'. | ||||
* | Added documentation for the C API "Tcl_GetNameOfExecutable" which simply | suresh | 1998-06-12 | 1 | -4/+14 |
| | | | | returns a pointer to the internal "tclExecutablename" char* variable. | ||||
* | Added some ^L page breaks. | suresh | 1998-06-12 | 1 | -3/+3 |
| | |||||
* | Some code clean up to removed unnecesary pointer definitions. | suresh | 1998-06-12 | 1 | -66/+103 |
| | | | | Comments and "@@@" To-Do symbols removed. | ||||
* | added cleanup of .pdb and .pch files in the clean target | escoffon | 1998-06-10 | 1 | -0/+2 |
| | |||||
* | turn off check for shared source string in Tcl_ProcObjCmd if the body | escoffon | 1998-06-10 | 1 | -2/+15 |
| | | | | is a PRECOMPILED ByteCode object. | ||||
* | - Added the flags field in a ByteCode struct, and added one flag: | escoffon | 1998-06-10 | 1 | -0/+10 |
| | | | | | TCL_BYTECODE_PRECOMPILED to mark ByteCodes generated from .tbc files - Added the TclGetInstructionTable procedure | ||||
* | Restored the SCCS id string back to id strings | escoffon | 1998-06-10 | 1 | -1/+1 |
| | |||||
* | Added the definition of the EXPORT macro, used to declare that some | escoffon | 1998-06-10 | 1 | -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 ByteCode | escoffon | 1998-06-10 | 1 | -0/+26 |
| | | | | - Added the TclGetInstructionTable procedure so that the table can be accessed | ||||
* | replaced the SCCS id string in header to display ids | escoffon | 1998-06-10 | 1 | -1/+1 |
| | |||||
* | modified the check for no source string in Tcl_EvalObj to account for | escoffon | 1998-06-10 | 1 | -1/+1 |
| | |||||
* | *** empty log message *** | stanton | 1998-06-09 | 1 | -2/+6 |
| | |||||
* | changed so server sockets can't be trashed by fileevent | stanton | 1998-06-09 | 1 | -6/+14 |
| | |||||
* | *** empty log message *** | stanton | 1998-06-09 | 1 | -0/+45 |
| | |||||
* | fixed bug that caused file events to not be reported on buffered data | stanton | 1998-06-09 | 1 | -8/+43 |
| | |||||
* | Added function prototypes for 'TclAccess', 'TclStat', 'TclAccessInsertProc', | suresh | 1998-06-04 | 1 | -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', | suresh | 1998-06-04 | 1 | -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(...)' to | suresh | 1998-06-04 | 1 | -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. | ||||
* | Initial revision | suresh | 1998-06-04 | 1 | -0/+100 |
| | |||||
* | Renamed 'TclmacStat(...)' to 'TclpStat(...)' & 'TclmacAccess(...)' to | suresh | 1998-06-03 | 1 | -9/+6 |
| | | | | | | | | 'TclpAccess(...)'. Removed macro defines for 'stat' and 'access' because there are no longer any explicit calls to these function; only calls to 'TclStat' and 'TclAccess' which are implemented in '../generic/tclIOUtil.c'. Changed macro 'lstat' to simply call 'TclStat(...)' instead of 'stat(..)'. | ||||
* | Renamed 'TclMacStat(...)' to 'TclpStat(...)' & 'TclMacAccess(...)' to | suresh | 1998-06-03 | 1 | -2/+4 |
| | | | | | 'TclpAccess(...)'. Added 'TclStat' & 'TclAccess' which are implemented in '../generic/tclIOUtil.c'. | ||||
* | Renamed 'TclMacStat(...)' to 'TclpStat(...)' & 'TclMacAccess(...)' to | suresh | 1998-06-03 | 1 | -5/+5 |
| | | | | 'TclpAccess(...)'. |