summaryrefslogtreecommitdiffstats
path: root/generic/tclTestProcBodyObj.c
Commit message (Collapse)AuthorAgeFilesLines
* Now that we're no longer using SCM based on RCS, the RCS Keyword linesdgp2011-03-021-2/+0
|\ | | | | | | | | cause more harm than good. Purged them (except in zlib files). FossilOrigin-Name: c64f310d38b977e7ae26a48bcf8bb8c50e453af7
| * Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-021-2/+0
| |\ | | | | | | | | | | | | more harm than good. Purged them. FossilOrigin-Name: 79367df0f0e01a96f037f893e889e7cb9b807847
| | * Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-011-2/+0
| | | | | | | | | | | | | | | more harm than good. Purged them. FossilOrigin-Name: 90b4acd7bdab65433169a232124967885c18d972
* | | Simplify Tcl_AppInit and *_Init definitions.nijtmans2010-06-161-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | Change TclpThreadCreate and Tcl_CreateThread signature, making clear that "proc" is a function pointer, as in all other "proc" function parameters. FossilOrigin-Name: 8567ee888a85773fefe8d5dbf8da6fd77a5a00cc
* | | [ tcl-Feature Requests-2958832 ] Furthernijtmans2010-02-251-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | speed-up of ouster-hash function. Eliminate various unnecessary (ClientData) type casts. FossilOrigin-Name: b28fef8499c8d600688681143264f48ed28a8ead
* | | Fix [Bug 2883850]: pkgIndex.tcl doesn'tnijtmans2009-11-181-7/+10
| | | | | | | | | | | | | | | | | | get created with static Tcl build FossilOrigin-Name: 39268397d9e495cccd1fe6168edc5d0eb62e8db4
* | | - eliminate some unnessary type castsnijtmans2009-02-101-2/+2
| | | | | | | | | | | | | | | | | | | | | - some internal const decorations - spacing FossilOrigin-Name: a45c7b126b9137976cd91960cb3e2ecb5201d222
* | | Style fixes (unfouling whitespace, sorting comments, removing useless casts, ↵dkf2009-01-091-39/+39
| | | | | | | | | | | | | | | etc.) FossilOrigin-Name: cd3c38f00ada216d7bc93560d3d70012c2918343
* | | NRE implementation [Patch 2017110]msofer2008-07-131-3/+3
| | | | | | | | | FossilOrigin-Name: a646e4c362a574666638b06521668fc53952bd72
* | | Get rid of pre-C89-isms (esp. CONST vs const).dkf2008-04-271-7/+7
|/ / | | | | FossilOrigin-Name: 2d205c22fbe5def21ccd36bc6f7b2d3831f6122d
* | Complete the purge of K&R function definitions from manually-written code.dkf2007-04-161-13/+13
| | | | | | FossilOrigin-Name: 645aed2fcdcd55ca81df269a4ea262eeca2b9ff2
* | ANSIfy the test code (well, strip some of the worst offences!)dkf2005-11-021-45/+46
| | | | | | FossilOrigin-Name: d7327b2b332669015c31924dbaedfa4405b587a3
* | * 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 FossilOrigin-Name: d67b8edcbd50d2d6f1010ef9cd0a16dd24bfee2d
* 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 FossilOrigin-Name: b66419d3df3fe52260d8cb71d5d83b3f77257b43
* 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. FossilOrigin-Name: 0aa459d72f6b4b36bc6ce6cbf2e6caa923b60acd