summaryrefslogtreecommitdiffstats
path: root/unix/tclXtNotify.c
Commit message (Collapse)AuthorAgeFilesLines
* Backout the "dullest commit ever" (not my words ....). It breaks the build. jan.nijtmans2024-05-141-4/+4
| | | JN: Many of those changes are actually good, but there are too many changes to be able to search for a bug somewhere. Feel free to re-apply, after assuring it's really only whitespace changes. (my advise: do that after 9.0b2)
* Clean up a lot of small whitespace issues dkf2024-05-131-4/+4
| | | This is the dullest commit ever. Sorry.
* Fix indentation/brace usage style issuesdkf2024-03-191-1/+1
|
* Correct spelling errors in comments and documentation, but also a ↵pooryorick2023-04-121-1/+1
|\ | | | | | | non-comment corrections in history.tcl and tcltest.test.
| * Correct spelling errors in comments and documentation, but also a non-comment pooryorick2023-04-121-1/+1
| | | | | | corrections in history.tcl and tcltest.test.
* | Some more (internal) ClientData -> void * changesjan.nijtmans2022-09-021-5/+5
| |
* | Merge 8.7jan.nijtmans2022-03-051-6/+7
|\ \ | |/
| * Add "const" to Tcl_SetNotifier() argument. Should have been part of TIP #27, ↵jan.nijtmans2022-03-051-6/+7
| | | | | | | | looooooong ago. This simplifier tclXtNotify.c a lot.
* | Merge 8.7jan.nijtmans2022-03-041-5/+1
|\ \ | |/
| * Merge 8.6jan.nijtmans2022-03-041-5/+1
| |\
| | * Fix [8d8bb39962]: incorrect notifier initialization in tclXtNotify.cjan.nijtmans2022-03-041-5/+1
| | |
* | | Clean up the notifier code to not spread the hooks quite so widelydkf2021-04-031-4/+4
|\ \ \ | |/ /
| * | Refactoring, ahoydkf2021-03-301-4/+4
| | |
* | | Merge 8.7jan.nijtmans2020-12-081-1/+1
|\ \ \ | |/ /
| * | Add -finput-charset=UTF-8 and -fextended-identifiers to gcc (and clang). All ↵jan.nijtmans2020-12-081-1/+1
| | | | | | | | | | | | C sources can now use UTF-8, as far as gcc/clang/msvc support it. Not used yet
* | | merge 8.7dgp2020-03-091-2/+2
|\ \ \ | |/ /
| * | TCL_UNUSED in the unix sources.dgp2020-03-091-2/+2
| | |
* | | Merge 8.7jan.nijtmans2020-02-281-2/+2
|\ \ \ | |/ /
| * | Experiment: compile Tcl with C++ compiler. WIPjan.nijtmans2019-07-041-2/+2
| | |
* | | More size_t-related consolidations. Now regexp can handle strings >2GB and ↵jan.nijtmans2019-02-051-2/+2
| | | | | | | | | | | | more. Remove many type-casts which are not necessary any more.
* | | Change ckalloc and friends to Tcl_Alloc and friends. Add two defines, ↵jan.nijtmans2018-09-011-3/+3
|/ / | | | | | | TCL_IO_FAILURE and TCL_NO_LENGTH (experimental, still open to be renamed following discussion)
* | Simplify use of "struct" keyword in many places.jan.nijtmans2016-06-301-1/+1
|/
* Bug [817249]: bring tclXtNotify.c up to date with Tcl_SetNotifier() changejan.nijtmans2013-07-031-11/+15
|\
| * Bug [817249]: bring tclXtNotify.c up to date with Tcl_SetNotifier() changejan.nijtmans2013-07-031-17/+21
| |
* | A few unneeded internal CONST/CONST86'sjan.nijtmans2012-11-161-7/+4
| |
* | Adjust ckalloc/ckfree macros to greatly reduce number of explicit casts indkf2011-03-121-3/+3
| | | | | | rest of Tcl source code. No ABI change. API change *should* be harmless.
* | MINOR: Formatting fixes, mainly to comments, so code better fits the style indkf2011-03-101-2/+2
| | | | | | the Engineering Manual.
* | 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.
* | | Fix compilation of xttest with 8.6 changesnijtmans2010-06-141-14/+17
| | | | | | | | | | | | tclPipe.c: Fix gcc warning (with -fstrict-aliasing=2)
* | | Fix [Bug 2883850]: pkgIndex.tcl doesn'tnijtmans2009-11-181-1/+4
| | | | | | | | | | | | get created with static Tcl build
* | | Style improvements - invoking callbacks without visual junk.dkf2008-10-261-2/+2
|/ /
* | Complete the purge of K&R function definitions from manually-written code.dkf2007-04-161-23/+23
| |
* | ANSIfydkf2005-11-021-16/+13
| |
* | Getting more systematic about styledkf2005-07-241-147/+144
| |
* | Patch 922727 committed. Implements three changes:dgp2004-04-061-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclInt.h: Reworked the Tcl header files into a clean * unix/tclUnixPort.h: hierarchy where tcl.h < tclPort.h < tclInt.h * win/tclWinInt.h: and every C source file should #include * win/tclWinPort.h: at most one of those files to satisfy its declaration needs. tclWinInt.h and tclWinPort.h also better organized so that tclWinPort.h includes the Windows implementation of cross-platform declarations, while tclWinInt.h makes declarations that are available on Windows only. * generic/tclBinary.c (TCL_NO_MATH): Deleted the generic/tclMath.h * generic/tclMath.h (removed): header file. The internal Tcl * macosx/Makefile (PRIVATE_HEADERS): header, tclInt.h, has a * win/tcl.dsp: #include <math.h> directly, and file external to Tcl needing libm should do the same. * win/Makefile.in (WIN_OBJS): Deleted the win/tclWinMtherr.c file. * win/makefile.bc (TCLOBJS): It's a vestige from matherr() days * win/makefile.vc (TCLOBJS): gone by. * win/tcl.dsp: * win/tclWinMtherr.c (removed):
* | All uses of 'panic' (the macro) changeddavygrvy2003-12-241-2/+2
|/ | | | | | | to 'Tcl_Panic' (the function). The #define of panic in tcl.h clearly states it is deprecated in the comments. [Patch 865264]
* Added hook points to the notifierwelch1999-07-021-16/+28
| | | | Updated Xt tests to use new Tcl_SetNotifier
* stripped carriage returns at end of linesstanton1999-02-031-656/+656
|
* Replaced SCCS strings, fixed binary filescore_8_0_3stanton1998-09-141-1/+1
|
* Initial revisionwelch1998-07-071-0/+656