summaryrefslogtreecommitdiffstats
path: root/generic/tclTestProcBodyObj.c
Commit message (Collapse)AuthorAgeFilesLines
* - eliminate some unnessary type castsnijtmans2009-02-101-2/+2
| | | | | - some internal const decorations - spacing
* Style fixes (unfouling whitespace, sorting comments, removing useless casts, ↵dkf2009-01-091-39/+39
| | | | etc.)
* NRE implementation [Patch 2017110]Miguel Sofer2008-07-131-3/+3
|
* Get rid of pre-C89-isms (esp. CONST vs const).dkf2008-04-271-7/+7
|
* Complete the purge of K&R function definitions from manually-written code.dkf2007-04-161-13/+13
|
* ANSIfy the test code (well, strip some of the worst offences!)dkf2005-11-021-45/+46
|
* * generic/tclProc.c: The routine TclProcInterpProc was a ↵dgp2004-08-251-14/+4
| | | | | | | | | | | | specific * generic/tclTestProcBodyObj.c: instance of the general service already provided by TclObjInvokeProc. Removed TclProcInterpProc and TclGetInterpProc from the code... * generic/tclInt.decls ...and from the internal stubs table. * generic/tclIntDecls.h * generic/tclStubInit.c
* Fixed some tests which were failing on the Mac because of path differences. ↵jingham1998-11-101-1/+3
| | | | Added a test to the resource tests to cover the but I fixed. Fixed the stat test commands - the mac files were getting a leading :, which the test commands did not expect
* Added a new Tcl object called "procbody"; this object's internalescoffon1998-10-051-0/+317
representation contains both a Proc struct and its associated ByteCode. Updated tclProc.c::TclCreateProc to take procbody instances as the body argument, for future support of compiler extensions. Added the "procbodytest" package for testing all this stuff.