summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * doc/CrtSlave.3 (Tcl_MakeSafe): Removed warning about possibledgp2003-07-184-12/+16
| | | | deprecation (no TIP on that).
* * macosx/Makefile: added var to allow overriding of tclsh useddas2003-07-182-2/+8
| | | | during html help building (Landon Fuller).
* 2003-07-16 Mumit Khan <khan@nanotech.wisc.edu>hobbs2003-07-174-42/+60
| | | | | | | | * generic/tclIOUtil.c (SetFsPathFromAny): Add Cygwin specific code to convert POSIX filename to native format. * generic/tclFileName.c (Tcl_TranslateFileName): And remove from here. (TclDoGlob): Adjust for cygwin and append / for dirs instead of \ * win/tclWinFile.c (TclpObjChdir): Use chdir on Cygwin.
* * library/safe.tcl (FileInAccessPath): normalize paths beforehobbs2003-07-162-2/+13
| | | | comparison. [Bug 759607] (myers)
* * unix/tclUnixNotfy.c (NotifierThreadProc): correct size of foundhobbs2003-07-162-2/+8
| | | | and word vars from int to long. [Bug 767578] (hgo)
* * generic/tcl.h: add recognition of -DTCL_UTF_MAX=6 on thehobbs2003-07-163-4/+30
| | | | | * generic/regcustom.h: make line to support UCS-4 mode. No config arg at this time, as it is not the recommended build mode.
* Tcl_MakeSafe is a nasty function; document it as such. [Bug 655300]dkf2003-07-162-5/+17
|
* * generic/tclPreserve.c: In Result and Preserve'd routines, do nothobbs2003-07-164-32/+29
| | | | | * generic/tclUtil.c: assume that ckfree == free, as that is not * generic/tclResult.c: always true. [Bug 756791] (fuller)
* * win/Makefile.in: Don't define TCL_DBGXmdejong2003-07-164-11/+28
| | | | | | | | | | | | | | | | symbol for every compile. Instead, define TCL_PIPE_DLL only when compiling tclWinPipe.c. This will break other build systems, so they will need to remove the TCL_DBGX define and replace it with a define for TCL_PIPE_DLL. * win/makefile.vc: Ditto. * win/tclWinPipe.c (TclpCreateProcess): Remove PREFIX_IDENT and DEBUG_IDENT from top of file. Use TCL_PIPE_DLL passed in from build env instead of trying to construct the dll name from already defined symbols. This approach is more flexible and better in the long run.
* * generic/tclFileName.c (Tcl_GlobObjCmd): [Bug 771840]dgp2003-07-164-24/+8
| | | | | | * generic/tclIOUtil.c (Tcl_FSConvertToPathType):[Bug 771947] * unix/tclUnixFCmd.c (GetModeFromPermString): [Bug 771949] Silence compiler warnings about unreached lines.
* * library/tcltest/tcltest.tcl (ProcessFlags): Corrected broken calldgp2003-07-163-4/+10
| | | | | * library/tcltest/pkgIndex.tcl: to [lrange]. Bumped to version 2.2.4. [Bug 772333]
* Removed trivially-unreachable line [Bug 771939]dkf2003-07-161-2/+1
|
* * doc/http.n: Updated SYNOPSIS to match actual syntax ofdgp2003-07-162-3/+6
| | | | commands. [Bug 756112]
* * unix/dltest/pkga.c (Pkga_EqObjCmd): Fix typomdejong2003-07-162-2/+7
| | | | that was causing a crash in load.test.
* * unix/dltest/pkga.c: Updated to not use Tcl_UtfNcmp and counteddgp2003-07-152-2/+14
| | | | | strings instead of strcmp (not defined in any #include'd header) and presumed NULL-terminated strings.
* * README: Bumped patch level to 8.4.4 in anticipationdgp2003-07-1510-16/+27
| | | | | | | | | | | | * generic/tcl.h: of another patch release. * tools/tcl.wse.in: * unix/configure.in: * unix/tcl.spec: * win/README.binary: * win/configure.in: * unix/configure: autoconf (2.13) * win/configure:
* Missed a bit off the last checkin! <:^)dkf2003-07-151-2/+2
|
* Added examples from David Welton [Patch 763312]dkf2003-07-152-1/+58
|
* * generic/tclCompCmds.c (TclCompileIfCmd): Prior fix of Bug 711371dgp2003-07-152-3/+11
| | | | on 2003-04-07 introduced a buffer overflow. Corrected. [Bug 771613]
* Fixed confusing error message. [Bug 771539]dkf2003-07-153-4/+9
|
* * macosx/Makefile: Rewrote buildsystem for Mac OS X framework builddas2003-07-158-804/+496
| | | | | | | | | | | | | | | | | | | | | | | | | | | to be purely make driven; in order to become independent of Apple's closed-source IDE and build tool. The changes are intended to be transparent to the Makefile user, all existing make targets and cmd line variable overrides should continue to work. Changed build to only include tcl specific html help in Tcl.framework, the tk specific html help is now included in Tk.framework. * macosx/Tcl.pbproj/project.pbxproj: * macosx/Tcl.pbproj/jingham.pbxuser: Changed to purely call through to the make driven buildsystem; Tcl.framework is no longer assembled by ProjectBuilder. Set default SYMROOT in target options to simplify setting up PB (manually setting common build folder for tcl & tk no longer needed). * tools/tcltk-man2html.tcl: Added options to allow building only the tcl or tk html help files; the default behaviour with none of the new options is to build both, as before. * unix/Makefile.in: Added targets for building only the tcl or tk help. * macosx/README (new): Tcl specific excerpts of tk/macosx/README. * generic/tcl.h: Updated reminder comment about editing macosx/Tcl.pbproj/project.pbxproj when version number changes.
* missing .hobbs2003-07-141-2/+2
|
* typo fixes from trunkdas2003-07-141-5/+5
|
* Documented and tested for the current behaviour of [binary format a] anddkf2003-07-113-3/+43
| | | | [binary scan ? a]. This is what they've been doing all along. [Bug 735364]
* * library/package.tcl: Corrected [pkg_mkIndex] bug reported ondgp2003-07-112-3/+13
| | | | | comp.lang.tcl. The indexer was searching for newly indexed packages instead of newly provided packages.
* Tighened up wording of several expr operations to make them less inclined todkf2003-07-042-12/+16
| | | | misinterpretation. [Bug 758488]
* * tests/cmdAH.test: Made tests of [file mtime] work better on FATdkf2003-07-042-27/+79
| | | | filesystems. [Patch 760768] Also a little general cleanup.
* * unix/configure: Regen.mdejong2003-06-253-25/+37
| | | | | | | * unix/tcl.m4 (SC_CONFIG_CFLAGS): Add -ieee when compiling with cc and add -mieee when compiling with gcc under OSF1-V5 "Tru64" systems. [Bug 748957]
* Documented that [source] always uses the system encoding.dkf2003-06-242-8/+17
|
* fs doc fixvincentdarley2003-06-232-13/+15
|
* file copy empty filename bug fixvincentdarley2003-06-233-2/+26
|
* 2003-06-18 Miguel Sofer <msofer@users.sf.net>Miguel Sofer2003-06-182-4/+7
| | | | | * generic/tclNamesp.c (Tcl_Export): removed erroneous comments [Bug 756744]
* backport of regsub empty string fixesvincentdarley2003-06-173-7/+63
|
* * generic/tclBasic.c:Miguel Sofer2003-06-104-26/+39
| | | | | | | * generic/tclExecute.c: let TclExecuteObjvInternal call TclInterpReady instead of relying on its callers to do so; fix for the part of [Bug 495830] that is new in 8.4. * tests/interp.test: Added tests 18.9 (knownbug) and 18.10
* * string.test (string-4.15): Added test for [string first] bugdgp2003-06-092-1/+14
| | | | | reported in Tcl 8.3, where test for all-single-byte-encoded strings was not reliable.
* Fix for [Bug 748700]Joe Mistachkin2003-06-043-4/+16
|
* add thanksdgp2003-05-231-0/+2
|
* * generic/tclObj.c (tclCmdNameType): Converted internal repdgp2003-05-232-8/+27
| | | | | | | | management of the cmdName Tcl_ObjType the opposite way, to always use the twoPtrValue instead of always using the otherValuePtr. Previous fix on 2003-05-12 broke several extensions that wanted to poke around with the twoPtrValue.ptr2 value of a cmdName Tcl_Obj, like TclBlend and e4graph. [Bug 726018]
* moved core-8-4-3 tag for macosx only fix at request of OS X maintainercore_8_4_3hobbs2003-05-231-2/+2
|
* * macosx/tclMacOSXBundle.c: fixed a problem that caused only thedas2003-05-222-0/+17
| | | | | | first call to Tcl_MacOSXOpenVersionedBundleResources() for a given bundle identifier to succeed. This caused the tcl runtime library not to be found in all interps created after the inital one.
* updated changes for 8.4.3hobbs2003-05-202-1/+87
|
* * unix/Makefile.in: do not run autoconf during 'make dist' as thehobbs2003-05-202-4/+7
| | | | configure is now a CVS-maintained file and should be up-to-date.
* * macosx/Tcl.pbproj/project.pbxproj: changed tclConfig.sh locationdas2003-05-192-1/+8
| | | | | | in versioned framework subdirectories to be identical to location in framework toplevel; fixed stub library symbolic links to be tcl version specific.
* 2003-05-16 Daniel Steffen <das@users.sourceforge.net>das2003-05-162-1/+5
| | | | * macosx/Tcl.pbproj/project.pbxproj: updated copyright year.
* * win/tclWinFile.c (TclpMatchInDirectory): revert glob code tohobbs2003-05-162-71/+49
| | | | r1.44 as 2003-04-14 optimizations broke Windows98 glob'ing.
* bumped version to 8.4.3hobbs2003-05-1511-18/+29
|
* * doc/socket.n: nroff font handling correction.hobbs2003-05-152-2/+4
|
* * library/encoding/gb2312-raw.enc (new): This is the originalhobbs2003-05-152-0/+1387
| | | | | | gb2312.enc renamed to allow for it to still be used. This is needed by Tk (unix) because X fonts with gb2312* charsets really do want the original gb2312 encoding. [Bug 557030]
* Consequent fixes from [Bug 699060]; [format] should not be too eager to demotedkf2003-05-143-3/+39
| | | | wides to ints, and should throw errors when appropriate.
* * library/encoding/gb2312.enc: copy euc-cn.enc over originalhobbs2003-05-142-92/+114
| | | | | | gb2312.enc. gb2312.enc appeared to not work as expected, and most uses of gb2312 really mean euc-cn (which may be the cause of the problem). [Bug 557030]