summaryrefslogtreecommitdiffstats
path: root/tools/testfiles/tgroup-1.ddl
Commit message (Expand)AuthorAgeFilesLines
* [svn-r7542] Purpose:Quincey Koziol2003-10-051-15/+15
* [svn-r2012] updated the ddls to support the changes that were made to the beg...Patrick Lu2000-03-091-15/+15
* [svn-r971] Changes since 19981214Robb Matzke1998-12-171-1/+1
* [svn-r728] Added tests and expected optput for dumper options.Ruey-Hsia Li1998-09-281-0/+33
alue='bug_900cb0284bc'>bug_900cb0284bc Tcl is a high-level, general-purpose, interpreted, dynamic programming language. It was designed with the goal of being very simple but powerful.
summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | update docs for latest changedgp2003-03-262-6/+4
| | | |
* | | | * library/tcltest/tcltest.tcl: Added reporting duringdgp2003-03-264-13/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [configure -debug 1] operations to warn about multiple uses of the same test name. [FR 576693] Replaced [regexp] and [regsub] with [string map] where possible. Thanks to David Welton. [Bugs 667456,667558] * library/tcltest/pkgIndex.tcl: Bumped to tcltest 2.2.3 * tests/msgcat.test (msgcat-2.2.1): changed test name to avoid duplication. [Bug 710356]
* | | | typo corrections in ARGUMENTSdgp2003-03-261-3/+3
| | | |
* | | | * generic/tclVar.c:Miguel Sofer2003-03-243-19/+60
| | | | | | | | | | | | | | | | | | | | * tests/var.test: fixing ObjMakeUpvar's lookup algorithm for the created local variable, bugs #631741 and #696893.
* | | | Added quoting around the script name in the 'test' target; Joe Kevin B Kenny2003-03-232-3/+7
| | | | | | | | | | | | | | | | | | | | Mistachkin insists that he has a configuration that fails to launch tcltest without it, and it appears harmless otherwise.
* | | | Fixed a bug where [package require dde] or [package require registry] Kevin B Kenny2003-03-233-2/+10
| | | | | | | | | | | | | | | | | | | | attempted to load the release version of the DLL into a debug build. [Bug 708218] Thanks to Joe Mistachkin for the patch.
* | | | * generic/tclInt.h (tclOriginalNotifier):dgp2003-03-216-13/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclStubInit.c (tclOriginalNotifier): * mac/tclMacNotify.c (Tcl_SetTimer,Tcl_WaitForEvent): * unix/tclUnixNotfy.c (Tcl_SetTimer,Tcl_WaitForEvent, Tcl_CreateFileHandler,Tcl_DeleteFileHandler): * win/tclWinNotify.c (Tcl_SetTimer,Tcl_WaitForEvent): Some linkers apparently use a different representation for a pointer to a function within the same compilation unit and a pointer to a function in a different compilation unit. This causes checks like those in the original notifier procedures to fall into infinite loops. The fix is to store pointers to the original notifier procedures in a struct defined in the same compilation unit as the stubs tables, and compare against those values. [Bug 707174]
* | | | * generic/tclInt.h: Removed definition of ParseValue struct thatdgp2003-03-202-32/+6
| | | | | | | | | | | | | | | | is no longer used.
* | | | * generic/tclCompile.c:Miguel Sofer2003-03-193-3/+27
| | | | | | | | | | | | | | | | | | | | * tests/compile.test: bad command count on TCL_OUT_LINE_COMPILE [Bug 705406] (Don Porter). Backport from 8.5a0
* | | | * doc/Eval.3 (Tcl_EvalObjEx): Corrected CONST anddgp2003-03-193-8/+16
| | | | | | | | | | | | | | | | | | | | * doc/ParseCmd.3 (Tcl_EvalTokensStandard): return type errors in documentation. [Bug 683994]
* | | | revised latest registry test commitdgp2003-03-191-10/+4
| | | |
* | | | * tests/registry.test: Changed the conditionals to avoid an Kevin B Kenny2003-03-192-8/+16
| | | | | | | | | | | | | | | | | | | | abort if [testlocale] is missing, as when running the test in tclsh rather than tcltest. [Bug #705677]
* | | | * tools/tcltk-man2html.tcl: added support for building 'make html'das2003-03-182-19/+16
| | | | | | | | | | | | | | | | | | | | | | | | from inside distribution directories named with 8.x.x version numbers. tcltk-man2html now uses the latest tcl8.x.x resp. tk8.x.x directories found inside its --srcdir argument.
* | | | Fixes for three filesystem problemsvincentdarley2003-03-184-5/+27
| | | |
* | | | Fixed docbug in lsearch and lsort for -ascii opt, which operates on Unicodedkf2003-03-173-5/+14
| | | | | | | | | | | | | | | | not ASCII these days. [Bug #703807]
* | | | Made format less keen on converting numeric types. [Bug #699060]dkf2003-03-143-10/+52
| | | |
* | | | Backport of fix for 698146 to remove assumption that time_t is a long...dkf2003-03-142-7/+12
| | | |
* | | | * generic/tclCmdAH.c (Tcl_FormatObjCmd): Only add the modifierdkf2003-03-143-150/+170
| | | | | | | | | | | | | | | | | | | | | | | | that indicates we've got a wide int when we're formatting in an integer style. Stops some libc's from going mad. [Bug #702622] Also tidied whitespace.
* | | | Backed the version to 8.4 on the 8.4 branch. Kevin B Kenny2003-03-132-2/+7
| | | | | | | | | | | | | | | | (I just loathe sticky tags).
* | | | * generic/tcl.h: Removed TCL_PREFIX_IDENT and TCL_DEBUG_IDENTdgp2003-03-123-7/+11
| | | | | | | | | | | | | | | | | | | | * win/tclWinPipe.c: from tcl.h -- they are not part of Tcl's public interface. Put them in win/tclWinPipe.c where they are used.
* | | | * generic/tclCmdMZ.c (Tcl_SubstObj): Corrected and added test fordgp2003-03-123-20/+25
| | | | | | | | | | | | | | | | | | | | * tests/subst.test (subst-2.4): Tcl_SubstObj's incorrect halting of substitution at the first \x00 byte. [Bug 685106]
* | | | correct latest entrydgp2003-03-121-3/+4
| | | |
* | | | * generic/tclInterp.c (Tcl_InterpObjCmd): Corrected optiondgp2003-03-12