summaryrefslogtreecommitdiffstats
path: root/generic/tclIndexObj.c
Commit message (Collapse)AuthorAgeFilesLines
* 3366265 Allocate proper size buffer for TclConvertElement() to write to.dgp2011-07-141-2/+4
|\
| * 3366265 Allocate proper size buffer for TclConvertElement() to write to.dgp2011-07-141-2/+4
| |
* | New internal routines TclScanElement() and TclConvertElement().dgp2011-05-101-4/+6
|\ \ | |/ | | Rewritten guts of machinery to produce string rep of lists. [Bug 3173086]
| * Completed patch with mucho comments. Merge 8.5.bug_3173086dgp2011-05-101-0/+3
| |
| * Significant rewrite of the Tcl*(Scan|Convert)*Element() system, and revisionsdgp2011-03-031-4/+6
| | | | | | | | to the callers. Needs more work on comments, and testing to check for any performance impact in either direction. Fixes reported bug.
* | TclFreeIntRep() cleanup.dgp2011-04-271-1/+0
| |
* | Make sure SetFooFromAny routines react reasonably when passed a NULL interp.dgp2011-04-211-0/+2
|\ \
| * \ Make sure SetFooFromAny routines react reasonably when passed a NULL interp.dgp2011-04-211-0/+2
| |\ \ | | |/ | |/|
| | * Make sure SetFooFromAny routines react reasonably when passed a NULL interp.dgp2011-04-211-0/+2
| | |
* | | Adjust ckalloc/ckfree macros to greatly reduce number of explicit casts indkf2011-03-121-14/+12
| | | | | | | | | rest of Tcl source code. No ABI change. API change *should* be harmless.
* | | 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).
| * | 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.
| | * 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.
| | * * generic/tclIndexObj.c (Tcl_GetIndexFromObjStruct): It seemsdgp2006-04-061-2/+2
| | | | | | | | | | | | | | | | | | | | | * tests/indexObj.test: there are extensions that rely on the prior * doc/GetIndex.3: behavior that the empty string cannot succeed as a unique prefix matcher, so I'm restoring Donal Fellow's solution. Added mention of this detail to the documentation. [Bug 1464039]
| | * * generic/tclIndexObj.c (Tcl_GetIndexFromObjStruct): Allow emptydgp2006-04-051-7/+3
| | | | | | | | | | | | | | | strings to be matched by the Tcl_GetIndexFromObj machinery, in the same manner as any other key. [Bug 1464039]
| | * Fix [Bug 1646039]dkf2006-04-051-13/+9
| | |
| | * * generic/tclIndexObj.c: Disallow the "ambiguous" error messagedgp2006-02-161-3/+3
| | | | | | | | | | | | * generic/indexObj.test: when TCL_EXACT matching is requested.
| | * Fix shared object panics. [Bug 875395]dkf2004-01-131-3/+6
| | |
* | | Fix gcc -Wextra warning: missing initializernijtmans2010-12-101-5/+5
| | |
* | | [FRQ 2974744]: share exception codes (ObjType?):nijtmans2010-03-301-1/+52
| | | | | | | | | | | | further optimization, making use of indexType.
* | | Code Audit results:dkf2010-03-051-41/+42
| | | | | | | | | | | | | | | | | | | | | | | | * use do { ... } while (0) in macros * avoid shadowing one local variable with another * use clearer 'foo.bar++;' instead of '++foo.bar;' where result not required (i.e., semantically equivalent) * follow Engineering Manual rules on spacing and declarations
* | | Improve error message for corner case in ::prefixferrieux2010-03-011-2/+2
| | |
* | | fix [AT 86258]: special-casing of empty tables when generating error ↵ferrieux2010-03-011-11/+15
| | | | | | | | | | | | messages for [::tcl::prefix match].
* | | Pure whitespace changes, changing to follow Engineering Manual style.dkf2010-02-241-9/+9
| | |
* | | - genStubs.tcl: No longer generate a space after "*" andnijtmans2010-01-291-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | immediately after a function name, so the format of function definitions in tcl*Decls.h matches all other tcl*.h header files. - Change Tcl_ArgvFuncProc, Tcl_ArgvGenFuncProc and GetFrameInfoValueProc to be function definitions, not pointers, for consistency with all other Tcl function definitions.
* | | Eliminate various gcc warnings (in -Wextra mode)nijtmans2009-11-181-5/+5
| | |
* | | * generic/tclDictObj.c: Updated freeIntRepProc routines sodgp2009-09-301-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclExecute.c: that they set the typePtr field to * generic/tclIO.c: NULL so that the Tcl_Obj is not left * generic/tclIndexObj.c: in an inconsistent state. * generic/tclInt.h: [Bug 2857044] * generic/tclListObj.c: * generic/tclNamesp.c: * generic/tclOOCall.c: * generic/tclObj.c: * generic/tclPathObj.c: * generic/tclProc.c: * generic/tclRegexp.c: * generic/tclStringObj.c:
* | | Reset internal INTERP_ALTERNATE_WRONG_ARGSnijtmans2009-04-271-1/+2
| | | | | | | | | | | | | | | flag inside the Tcl_WrongNumArgs function, so the caller no longer has to do the reset.
* | | - eliminate some unnessary type castsnijtmans2009-02-101-7/+7
| | | | | | | | | | | | | | | - some internal const decorations - spacing
* | | Generate errorcodes for more cases.dkf2009-01-081-1/+2
| | |
* | | fix 'make checkstubs' failure: make TclGetIndexFromObjList staticdas2008-12-151-4/+7
| | |
* | | Eliminate 3 calls to Tcl_SetResult, asnijtmans2008-11-251-2/+2
| | | | | | | | | | | | | | | examples how it should have been done. purpose: contribute in the TIP #340 discussion.
* | | * generic/tclCmdAH.c: Fix minor compiler warnings when compilingnijtmans2008-10-141-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | * generic/tclCmdMZ.c: with -Wwrite-strings * generic/tclIndexObj.c: * generic/tclProc.c: * generic/tclStubLib.c: * generic/tclUtil.c:
* | | fix warningdas2008-10-101-2/+2
| | |
* | | Fix [Bug 2144595]dkf2008-10-051-5/+9
| | |
* | | * doc/GetIndex.3: CONSTified the tablePtr argumentnijtmans2008-10-041-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | * generic/tcl.decls: of Tcl_GetIndexFromObj. * generic/tclIndexObj.c * ChangeLog * generic/tclDecls.h: regenerated This change complies with TIP #27.
* | | Tidying up formattingdkf2008-10-031-73/+73
| | |
* | | typofixdkf2008-10-031-4/+4
| | |
* | | Implemented TIP#195 - tcl::prefix command. [Patch 1040206]dkf2008-10-031-9/+406
| | |
* | | Implement TIP #265. [FRQ 1446696]dkf2008-10-021-2/+380
|/ /
* | merge stable branch onto HEADdgp2007-12-131-1/+1
| |
* | Reduce cast count.dkf2007-11-191-19/+20
| |
* | [Patch 1830038]: Increased usage of macros to detect and take advantage of ↵Miguel Sofer2007-11-111-3/+3
| | | | | | | | objTypes.
* | * generic/tclInt.decls: Revised the interfaces of the routinesdgp2007-06-201-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclExecute.c: TclStackAlloc and TclStackFree to make them easier for callers to use (or more precisely, harder to misuse). TclStackFree now takes a (void *) argument which is the pointer intended to be freed. TclStackFree will panic if that's not actually the memory the call will free. TSA/TSF also now tolerate receiving (interp == NULL), in which case they simply fall back to be calls to Tcl_Alloc/Tcl_Free. * generic/tclIntDecls.h: make genstubs * generic/tclBasic.c: Updated callers * generic/tclCmdAH.c: * generic/tclCmdIL.c: * generic/tclCompCmds.c: * generic/tclCompExpr.c: * generic/tclCompile.c: * generic/tclFCmd.c: * generic/tclFileName.c: * generic/tclIOCmd.c: * generic/tclIndexObj.c: * generic/tclInterp.c: * generic/tclNamesp.c: * generic/tclProc.c: * generic/tclTrace.c: * unix/tclUnixPipe.c:
* | Silence a 'const'ness warning.dkf2007-06-121-2/+2
| |
* | Improve the argument substitution behaviour of Tcl_WrongNumArgs when faced withdkf2007-06-121-5/+24
| | | | | | | | ensemble and interp-alias rewrites.
* | * generic/tclBasic.c: Replace arrays on the C stack and ckallocdgp2007-04-021-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | * generic/tclExecute.c: calls with TclStackAlloc calls to use memory * generic/tclFCmd.c: on Tcl's evaluation stack. * generic/tclFileName.c: * generic/tclIOCmd.c: * generic/tclIndexObj.c: * generic/tclInterp.c: * generic/tclNamesp.c: * generic/tclTrace.c: * unix/tclUnixPipe.c:
* | * generic/tclIndexObj.c (Tcl_GetIndexFromObjStruct): It seemsdgp2006-04-061-2/+2
| | | | | | | | | | | | | | * tests/indexObj.test: there are extensions that rely on the prior * doc/GetIndex.3: behavior that the empty string cannot succeed as a unique prefix matcher, so I'm restoring Donal Fellow's solution. Added mention of this detail to the documentation. [Bug 1464039]
* | * generic/tclIndexObj.c (Tcl_GetIndexFromObjStruct): Allow emptydgp2006-04-051-7/+3
| | | | | | | | | | strings to be matched by the Tcl_GetIndexFromObj machinery, in the same manner as any other key. [Bug 1464039]
* | Nail [Bug 1464039] by allowing the empty string to be exactly matched bydkf2006-04-051-19/+15
| | | | | | | | Tcl_GetIndexFromObj. Also added tests.