summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* * generic/tclObj.c (TclAllocateFreeObjects): simplifiedhobbs2001-05-231-0/+7
| | | | | | objSizePlusPadding to use sizeof(Tcl_Obj) (max) Corrected use of tclObjsAlloced/Freed/Shared in TCL_MEM_DEBUG compile.
* * unix/tcl.m4: added more common install directories in which tohobbs2001-05-231-0/+19
| | | | search for *Config.sh [Bug #419812]
* removed unnecessary Tcl_DuplicateObj in generic/tclExecute.cMiguel Sofer2001-05-221-0/+4
|
* * Note that "tclbench" (see project "tcllib") was extended withandreas_kupries2001-05-191-2/+21
| | | | | | | | | | | | | | | | | | performance benchmarks for [fcopy] too. * doc/fcopy.n: Updated to reflect the extended behaviour of 'fcopy'. * tests/io.test: Added tests 'io-52.9', 'io-52.10' and 'io-52.11' to test the handling of encodings by 'fcopy' / 'TclCopychannel' [Bug #209210]. * generic/tclIO.c: Split of both 'Tcl_ReadChars' and 'Tcl_WriteChars' into a public error checking and an internal working part. The public functions now use the new internal ones. The new functions are 'DoReadChars' and 'DoWriteChars'. Extended 'CopyData' to use the new functions 'DoXChars' when required by the encodings on the input and output channels [Bug #209210].
* * library/history.tcl (tcl::HistAdd): prevent empty calls fromhobbs2001-05-171-0/+3
| | | | being added to the history (arndt)
* see ChangeLoghobbs2001-05-171-1/+58
|
* Sometimes I'm *so* stupid...dkf2001-05-161-0/+4
|
* Error in date of today's commits (doh!)Miguel Sofer2001-05-151-2/+2
|
* [Patch: 423617]Miguel Sofer2001-05-151-0/+4
|
* Patch from [Bug: 231259]Miguel Sofer2001-05-151-0/+8
|
* Added some documentation for the console command.dkf2001-05-151-0/+7
|
* Negative start index to [string first] caused offset return value (Bug 423581)dkf2001-05-141-0/+8
|
* * unix/Makefile.in: Add a LDFLAGS variable to themdejong2001-05-111-0/+15
| | | | | | | | | | | | | | Makefile instead of directly substing @LDFLAGS@. * unix/configure: Regen. * unix/tcl.m4: Fix CFLAGS_DEFAULT so that the name of a Makefile variable is passed as @CFLAGS@.win/tcl.m4 * win/Makefile.in: Move the setting of CFLAGS higher up in the Makefile. * win/configure: Regen. * win/configure.in: Use dnl to comment out macros so that they are not accidently expanded. * win/tcl.m4: Fix CFLAGS_DEFAULT so that the name of a Makefile variable is passed as @CFLAGS@.
* rand() gets != seeds in != threads [Bug 416643]Miguel Sofer2001-05-071-0/+5
|
* * tools/tcltk-man2html.tcl: removed use of 'exec' for portabilityhobbs2001-05-041-0/+7
| | | | and fixed up code.
* Fix for Bug 420186dgp2001-05-031-0/+10
|
* Patch for bug #420507Miguel Sofer2001-05-031-0/+8
|
* * tools/genStubs.tcl: Add a package require of Tcl 8mdejong2001-05-021-0/+7
| | | | | | at the beginning of the script so that the script will print a descriptive error message when run in an old Tcl 7 shell.
* Second attempt at committing the changes adding CONST qualifiers.Kevin B Kenny2001-04-271-1/+7
|
* Added several missing CONSTs in calls to TclGetNamespaceForQualNameKevin B Kenny2001-04-271-0/+4
|
* * unix/configure: Regen.mdejong2001-04-251-0/+9
| | | | | | | | * unix/tcl.m4: Subst TCL_THREADS into tclConfig.sh. * unix/tclConfig.sh.in: Add TCL_THREADS variable. * win/configure: Regen. * win/tcl.m4: Subst TCL_THREADS into tclConfig.sh. * win/tclConfig.sh.in: Add TCL_THREADS variable.
* * unix/configure: Regen.mdejong2001-04-251-0/+7
| | | | | | * unix/configure.in: Use $@ in MAKE_LIB and MAKE_STUB_LIB commands instead of using a delayed subst variable. Replace instances of STUB_LIB_FILE with TCL_STUB_LIB_FILE.
* * unix/Makefile.in: Use TCL_STUB_LIB_FILE instead of STUB_LIB_FILE.mdejong2001-04-251-0/+7
| | | | | | * unix/configure: Regen. * unix/configure.in: Don't subst STUB_LIB_FILE, use TCL_STUB_LIB_FILE instead.
* Got the encoding wrong; thanks to Richard Suchenwirth for pointing medkf2001-04-251-0/+4
| | | | in the direction of a correct encoding.
* Added some ISO8859-15 (Latin-9 or Latin-1+Euro symbol) support.dkf2001-04-251-0/+5
|
* Added a bunch of missing CONST declarations to stop warnings aboutdkf2001-04-251-0/+6
| | | | using TclGetNamespaceForQualName from the (Solaris8) SUNWspro cc.
* (TIP #27) Another round of CONST changes, thisKevin B Kenny2001-04-241-0/+21
| | | | | | | | | time adding CONST to the API's exported from tclBasic.c. [Patch #415179] ***POTENTIAL INCOMPATIBILITY*** from 8.4a2, in which Vince Darley's changes to command tracing were added. A const has been added to the type signature of one of the parameters to Tcl_CommandTraceProc.
* Altered tclUnixTime.c in hopes of better K&R compatibility.Kevin B Kenny2001-04-101-0/+5
|
* Fixed silly typo in calls to 'gmtime' and 'localtime'.Kevin B Kenny2001-04-101-0/+5
|
* Bug #219140: Added DYNAMIC_PATH to the shl_load flags.Kevin B Kenny2001-04-091-0/+5
|
* Changes to support re-entrant coding of gmtime and localtime.Kevin B Kenny2001-04-091-0/+8
| | | | (Bugs #219136 and #232558)
* Recognise the non-numeric boolean literals (true,false,yes,no,on,off.)dkf2001-04-091-0/+8
| | | | [Bug #217777]
* Avoid panic when there are extra items in the tcl stackMiguel Sofer2001-04-071-0/+6
| | | | [Bug #406709, Patch #414470]
* corrected behaviour of [namespace code] (Bug #219385, Patch #403530)Miguel Sofer2001-04-071-0/+9
|
* 2001-04-07 Andreas Kupries <andreas_kupries@users.sourceforge.net>andreas_kupries2001-04-061-0/+11
| | | | | | | | | | | * unix/Makefile.in (checkdoc): New target, checking the definitions as found in the compiled library against the manpages to find undocumented public functionality. * unix/mkLinks: Updated to include the new manpage. * doc/UniCharIsAlpha.3: New manpage documenting the Unicode character classification APIs [Bug #218720].
* 2001-04-07 Andreas Kupries <andreas_kupries@users.sourceforge.net>andreas_kupries2001-04-061-0/+13
| | | | | | | | | | | | | * unix/mkLinks: Updated to incorporate the changes below. * doc/StringObj.3: Added 'Tcl_AttemptSetObjLength' to the NAME section. [Bug #414435]. * doc/Alloc.3: Added both 'Tcl_AttemptAlloc' and 'Tcl_AttemptRealloc' to the NAME section. [Bug #414435]. * doc/Utf.3: Added both 'Tcl_UniCharCaseMatch' and 'Tcl_UniCharNcasecmp' to the NAME section. [Bug #414435].
* Modified processing of $::errorInfo by [unknown] when the auto-loaded commanddgp2001-04-061-0/+7
| | | | | throws an error to better cover the tracks of auto-loading. [Bug 219280, Patch 403551]
* Improved documentation on behaviour of read w.r.t. serial ports.dkf2001-04-061-0/+3
| | | | [Bug #219402]
* Fixed problem with [string compare \x00 \x01] and hopefully sped thedkf2001-04-061-0/+12
| | | | | command up in a few cases too (notably byte arrays and UNICODE objects.) [Bug #219201]
* 2001-04-05 Andreas Kupries <andreas_kupries@users.sourceforge.net>andreas_kupries2001-04-051-0/+5
| | | | | * doc/Macintosh.3: Removed duplicates from .SH line [Bug #413983].
* Fixed so tclCmdMZ.c will compile with K&R compilers [Patch #413844]dkf2001-04-051-0/+5
|
* Restore support for pre-ANSI compilers.dgp2001-04-041-0/+5
|
* 2001-04-04 Andreas Kupries <andreas_kupries@users.sourceforge.net>andreas_kupries2001-04-041-1/+11
| | | | | | | | | | * unix/mkLinks: Updated to contain the new manpage. * doc/Environment.3: New manpage, describes Tcl_PutEnv [Bug #219171]. * doc/Macintosh.3: New manpage describing the macintosh specific parts of the public API [Bug #219169].
* * unix/configure:hobbs2001-04-041-0/+8
| | | | | | | * unix/tcl.m4: extended test of termios vs. termio vs. sgtty to better detect result on Linux and when certain configure redirections are being used. (max) [Patch #402923; Bug #227412, #219194]
* 2001-04-04 Andreas Kupries <andreas_kupries@users.sourceforge.net>andreas_kupries2001-04-041-0/+7
| | | | | | | * generic/tclTest.c: * tests/io.tests: TIP #10 followup correcting a problem with the original patch because of the lack of 'testthread id' for a non-threaded compilation.
* fixed a typo in today's date.Kevin B Kenny2001-04-041-1/+1
|
* (TIP#27) Changed a number of Tcl API's to accept "CONST char*"Kevin B Kenny2001-04-041-0/+20
| | | | in place of simple "char*". (kennykb) [Patch #404026]
* change for tclListObj.chobbs2001-04-041-0/+6
|
* 2001-04-03 Andreas Kupries <andreas_kupries@users.sourceforge.net>andreas_kupries2001-04-031-0/+9
| | | | | | | | | * unix/mkLinks: Added 'Signal.3', 'Tcl_WaitPid'. * doc/DetachPids.3: Added description of 'Tcl_WaitPid' [Bug #219173]. * doc/Signal.3: New man page describing the public API procedures 'Tcl_SignalId' and 'Tcl_SignalMsg' [Bug #219172].
* * README:hobbs2001-04-031-0/+4
| | | | | * win/README: * win/README.binary: further notes corrections.