summaryrefslogtreecommitdiffstats
path: root/generic/tkUndo.c
Commit message (Collapse)AuthorAgeFilesLines
* Took comments from Koen Danckaert into account (with my thanks) to simplify ↵tip_446fvogel2016-05-171-22/+2
| | | | the implementation of TkUndoCanUndo() and TkUndoCanRedo() in tkUndo.c, and in tkText.c to remove direct calls to internals of the undo or redo stack
* Implementation of TIP #446 - Introspect Undo/Redo Stackfvogel2016-05-121-3/+69
|
* Remove unnecessary end-of-line spacingjan.nijtmans2014-11-211-1/+1
|
* Purge RCS Keywordsdgp2011-06-081-2/+0
|\
| * Purge RCS Keywords.dgp2011-06-081-2/+0
| |\
| | * Purge RCS Keywords.dgp2011-06-081-2/+0
| | |
| | * Fix [Bug 1380427] with [Patch 1391939]dkf2006-03-201-28/+8
| | |
| | * * generic/tkUndo.c (TkUndoSetDepth): correct -maxundohobbs2004-07-141-2/+2
| | | | | | | | | | | | segfault. [Bug #969358] (jiangwu)
| * | * generic/tkImgPhoto.c: fix numerous leaks discovered with thedas2009-02-061-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tkMenu.c: Mac OS X Instruments.app Leaks tool. * generic/tkText.c: * generic/tkTextImage.c: * generic/tkTextIndex.c: * generic/tkUndo.c: * generic/ttk/ttkFrame.c: * macosx/tkMacOSXWm.c:
* | | Remove casts from uses of ckalloc/ckfree/... now that Tcl declares them to bedkf2011-03-121-14/+14
| | | | | | | | | using useful casts internally.
* | | * generic/tkInt.h: add assert macros for clang staticdas2009-06-301-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | analyzer and redefine Tcl_Panic to assert after panic in clang PURIFY builds. * generic/tkImgPhInstance.c: small fixes to make clang static * generic/tkTextDisp.c: analyzer happier. * generic/tkConfig.c: add clang assert for false positives * generic/tkUndo.c: from static analyzer.
* | | * generic/tkImgPhInstance.c: fix numerous leaks discovered with thedas2009-02-061-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tkMenu.c: Mac OS X Instruments.app Leaks tool. * generic/tkText.c: * generic/tkTextImage.c: * generic/tkTextIndex.c: * generic/tkUndo.c: * generic/tkUtil.c: * generic/ttk/ttkFrame.c: * macosx/tkMacOSXWm.c:
* | | Lots of small changes to make code more pretty and C89-like.dkf2008-11-081-2/+2
|/ /
* | merge stable branch onto HEADdgp2007-12-131-1/+1
| |
* | header cleanupdgp2007-09-071-1/+2
| |
* | Fix minor K&R-ismdkf2007-02-131-3/+3
| |
* | generic/tkUndo.c (TkUndoSetDepth): Don't freea_kovalenko2006-01-121-11/+21
| | | | | | | | | | | | | | TkUndoSubAtoms for separator entries that are deleted: there is some unpredictable garbage instead of subatoms. Free both 'apply' and 'revert' action chains for non-separator entries.
* | Fix [Bug 1380427] using [Patch 1391939] from Ludwig Callewaertdkf2005-12-281-32/+7
| |
* | ANSIfy and reduce casting of NULL to promote readabilitydkf2005-11-171-2/+3
| |
* | Formatting cleanup and remove non-ANSI declsdkf2005-10-171-160/+185
| |
* | fix init warningshobbs2004-10-051-6/+6
| |
* | text widget 'peer' subcommand -- TIP#169 implementationvincentdarley2004-09-101-65/+237
| |
* | ckfree() the correct element! [Bug 969358]dkf2004-06-091-2/+2
| |
* | Whitespace/style policedkf2003-10-301-201/+262
| |
* | tip 113 implementationvincentdarley2003-05-191-12/+58
|/
* * doc/text.n: TIP #104 implementation which generalizes thehobbs2002-06-211-0/+400
* generic/tkText.c: undo/redo stack to not be tied solely to the * generic/tkText.h: text widget. The APIs are still private. * generic/tkUndo.c: This also adds a stack limiting ability and * generic/tkUndo.h: a -maxundo option to the text widget (in * library/text.tcl: addition to the options from TIP #26) should * mac/tkMacDefault.h: users want to limit the undo/redo stack * tests/text.test: (should not be necessary in most cases). * unix/Makefile.in: [Patch #554763] (callewart) * unix/tkUnixDefault.h: * win/Makefile.in: * win/makefile.vc: * win/tkWinDefault.h: