Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge 8.6 | jan.nijtmans | 2022-01-17 | 1 | -8/+8 |
|\ | |||||
| * | Tcl_NewObj() -> TclNewObj() | jan.nijtmans | 2022-01-17 | 1 | -8/+10 |
| | | |||||
| * | Eliminate many "register" keywords (which do nothing with modern compilers) | jan.nijtmans | 2020-09-14 | 1 | -6/+6 |
| | | | | | | Eliminate many unnecessary type-casts to (unsigned) | ||||
* | | Add -finput-charset=UTF-8 and -fextended-identifiers to gcc (and clang). All ↵ | jan.nijtmans | 2020-12-08 | 1 | -1/+1 |
| | | | | | | | | C sources can now use UTF-8, as far as gcc/clang/msvc support it. Not used yet | ||||
* | | Fix -Wshadow warnings, when compiling with a C++ compiler | jan.nijtmans | 2020-10-02 | 1 | -1/+1 |
| | | |||||
* | | Eliminate many usages of Tcl_NewObj (-> TclNewObj) and Tcl_NewIntObj (-> ↵ | jan.nijtmans | 2020-09-17 | 1 | -2/+4 |
| | | | | | | | | TclNewIntObj or Tcl_NewWideIntObj) | ||||
* | | TIP 569 - remove lint comments | dgp | 2020-03-17 | 1 | -2/+0 |
| | | |||||
* | | More | dgp | 2020-03-09 | 1 | -12/+6 |
| | | |||||
* | | Merge 8.7 | jan.nijtmans | 2019-12-08 | 1 | -1/+1 |
|\ \ | |||||
| * \ | Merge 8.6 | jan.nijtmans | 2019-12-06 | 1 | -1/+1 |
| |\ \ | | |/ | |||||
| | * | Unnecessary double ;; in tclTimer.c. Update compat/zlib to exactly the same ↵ | jan.nijtmans | 2019-12-06 | 1 | -1/+1 |
| | | | | | | | | | | | | content as in the core-8-branch branch. | ||||
* | | | Mark more function paramaters as unused. Now Tcl compiles fully (on UNIX and ↵ | jan.nijtmans | 2019-09-05 | 1 | -5/+11 |
|\ \ \ | |/ / | | | | | | | Windows) without -Wunused-parameters warnings | ||||
* | | | Merge tip-548 | jan.nijtmans | 2019-08-15 | 1 | -4/+4 |
|\ \ \ | |/ / | |||||
| * | | Eliminate "register" keyword _everywhere_ in Tcl. This keyword is deprecated ↵ | jan.nijtmans | 2019-07-17 | 1 | -5/+5 |
| | | | | | | | | | | | | in C++ (removed in C++17, even), and essentially does nothing with most modern compilers. | ||||
* | | | Merge 8.7, and continue implementation. Almost done | jan.nijtmans | 2019-07-10 | 1 | -12/+12 |
|/ / | |||||
* | | merge 8.6 | dgp | 2019-05-03 | 1 | -13/+13 |
|\ \ | |/ | |||||
| * | Minor code style cleanup. | dkf | 2019-04-23 | 1 | -7/+13 |
| | | |||||
* | | More use of (efficient) TclHasIntRep() macro. Also eliminate many (size_t) ↵ | jan.nijtmans | 2019-02-27 | 1 | -1/+1 |
| | | | | | | | | and (unsigned) type-casts, which don't make sense any more. | ||||
* | | merge 8.7 | dgp | 2018-02-06 | 1 | -21/+11 |
|\ \ | |||||
| * | | Finally, get rid of tclWideIntType completely | jan.nijtmans | 2017-11-01 | 1 | -1/+0 |
| | | | |||||
| * | | more progress in code simplifications | jan.nijtmans | 2017-10-30 | 1 | -2/+0 |
| | | | |||||
| * | | Change (internal) TclFormatInt() signature, so it can handle WideInt's ↵ | jan.nijtmans | 2017-10-30 | 1 | -21/+11 |
| | | | | | | | | | | | | directly. Ongoing simplifications ... | ||||
* | | | merge trunk | dgp | 2017-04-11 | 1 | -3/+9 |
|\ \ \ | |/ / | |||||
| * | | More minor style fixes. | dkf | 2017-04-10 | 1 | -3/+9 |
| | | | |||||
* | | | merge trunk | dgp | 2016-07-09 | 1 | -2/+2 |
|\ \ \ | |/ / | |||||
| * | | Micro-optimization: Use TclGetStringFromObj in stead of Tcl_GetStringFromObj ↵ | jan.nijtmans | 2016-07-08 | 1 | -2/+2 |
| | | | | | | | | | | | | in many places where possible. | ||||
* | | | merge trunk | dgp | 2016-07-02 | 1 | -1/+1 |
|\ \ \ | |/ / | |||||
| * | | Simplify use of "struct" keyword in many places. | jan.nijtmans | 2016-06-30 | 1 | -1/+1 |
| |/ | |||||
* | | Remove direct access to Tcl_Obj typePtr field that does nothing of any | dgp | 2016-03-30 | 1 | -10/+4 |
|/ | | | obvious benefit. | ||||
* | Implement Tcl_NewBooleanObj, Tcl_DbNewBooleanObj and Tcl_SetBooleanObj as ↵ | jan.nijtmans | 2013-04-23 | 1 | -1/+1 |
|\ | | | | | | | | | | | macros using Tcl_NewIntObj, Tcl_DbNewLongObj and Tcl_SetIntObj. Starting with Tcl 8.5, this is exactly the same, it only eliminates code duplication. Eliminate use of NO_WIDE_TYPE everywhere: It's exactly the same as TCL_WIDE_INT_IS_LONG | ||||
* | | more result generation conversion | dkf | 2012-08-03 | 1 | -4/+5 |
| | | |||||
* | | Factor out constant that must be the same in multiple places. Prompted by a | dkf | 2012-05-25 | 1 | -6/+3 |
| | | | | | | conversation with Alexandre Ferrieux. | ||||
* | | Reduce use of Tcl_AppendElement, which is not (and can't be) a Tcl_Obj-aware ↵ | dkf | 2011-05-09 | 1 | -3/+5 |
| | | | | | | | | API. | ||||
* | | More generation of error codes ([format], [after], [trace], RE optimizer). | dkf | 2011-04-04 | 1 | -14/+20 |
| | | |||||
* | | Adjust ckalloc/ckfree macros to greatly reduce number of explicit casts in | dkf | 2011-03-12 | 1 | -15/+15 |
| | | | | | | 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 lines | dgp | 2011-03-02 | 1 | -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 cause | dgp | 2011-03-02 | 1 | -2/+0 |
| |\ | | | | | | | more harm than good. Purged them. | ||||
| | * | Now that we're no longer using SCM based on RCS, the RCS Keyword lines cause | dgp | 2011-03-01 | 1 | -2/+0 |
| | | | | | | | | | more harm than good. Purged them. | ||||
| | * | Bug 1350293 | Kevin B Kenny | 2005-11-09 | 1 | -2/+3 |
| | | | |||||
| | * | Tcl_ClearChannelHandlers(): bail out early if passed NULL argument | vasiljevic | 2005-10-04 | 1 | -3/+6 |
| | | | |||||
| | * | purge outdated comment | dgp | 2005-03-23 | 1 | -4/+2 |
| | | | |||||
| | * | * generic/tclTimer.c: Removed a premature optimisation that | Kevin B Kenny | 2004-09-07 | 1 | -14/+4 |
| | | | | | | | | | | | | | | | | | | attempted to store the assoc data in the client data; the optimisation caused a bug that [after] would overwrite its imports. [Bug 1016167] | ||||
* | | | Stop small [afters] from wasting CPU [Bug 2905784] while keeping accuracy. | ferrieux | 2010-10-29 | 1 | -5/+21 |
| | | | |||||
* | | | Pure whitespace changes, changing to follow Engineering Manual style. | dkf | 2010-02-24 | 1 | -3/+3 |
| | | | |||||
* | | | Minor formatting issues | dkf | 2009-12-28 | 1 | -7/+6 |
| | | | |||||
* | | | * generic/tclExecute.c: fix potential uninitialized variable use and | das | 2009-09-07 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclFCmd.c: null dereference flagged by clang static * generic/tclProc.c: analyzer. * generic/tclTimer.c: * generic/tclUtf.c: * generic/tclExecute.c: silence false positives from clang static * generic/tclIO.c: analyzer about potential null dereference. * generic/tclScan.c: * generic/tclCompExpr.c: | ||||
* | | | - eliminate some unnessary type casts | nijtmans | 2009-02-10 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | - some internal const decorations - spacing | ||||
* | | | Style fixes (unfouling whitespace, sorting comments, removing useless casts, ↵ | dkf | 2009-01-09 | 1 | -22/+19 |
| | | | | | | | | | | | | etc.) | ||||
* | | | TIP #337 IMPLEMENTATION | dgp | 2008-12-09 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * doc/BackgdErr.3: Converted internal routine * doc/interp.n: TclBackgroundException() into public routine * generic/tcl.decls: Tcl_BackgroundException(). * generic/tclEvent.c: * generic/tclInt.decls: * generic/tclDecls.h: make genstubs * generic/tclIntDecls.h: * generic/tclStubInit.c: * generic/tclIO.c: Update callers. * generic/tclIOCmd.c: * generic/tclInterp.c: * generic/tclTimer.c: *** POTENTIAL INCOMPATIBILITY only for extensions using the converted internal routine *** | ||||
* | | | Style improvements - invoking callbacks without visual junk. | dkf | 2008-10-26 | 1 | -4/+4 |
| | | |