diff options
author | das <das> | 2008-04-16 14:29:23 (GMT) |
---|---|---|
committer | das <das> | 2008-04-16 14:29:23 (GMT) |
commit | f2cc98583dc54f92e54639280c862772682ad3ab (patch) | |
tree | fe9005e5e74ea32470b9a7d7a4fd613de2cdc49b /generic/tclInt.h | |
parent | 792972c9a4f2ab1f7a38cc284392f8df4b8301dd (diff) | |
download | tcl-f2cc98583dc54f92e54639280c862772682ad3ab.zip tcl-f2cc98583dc54f92e54639280c862772682ad3ab.tar.gz tcl-f2cc98583dc54f92e54639280c862772682ad3ab.tar.bz2 |
* generic/tclInt.h: revise Tcl_SetNotifier() to use a
* generic/tclNotify.c: module-scope hooks table instead of
* generic/tclStubInit.c: runtime stubs-table modification;
* macosx/tclMacOSXNotify.c: ensure all hookable notifier functions
* win/tclWinNotify.c: check for hooks; remove hook checks in
* unix/tclUnixNotfy.c: notifier API callers. [Patch 1938497]
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index e513663..7af390d 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInt.h,v 1.363 2008/03/30 04:26:16 kennykb Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.364 2008/04/16 14:29:25 das Exp $ */ #ifndef _TCLINT @@ -2357,7 +2357,7 @@ MODULE_SCOPE char * tclNativeExecutableName; MODULE_SCOPE int tclFindExecutableSearchDone; MODULE_SCOPE char * tclMemDumpFileName; MODULE_SCOPE TclPlatformType tclPlatform; -MODULE_SCOPE Tcl_NotifierProcs tclOriginalNotifier; +MODULE_SCOPE Tcl_NotifierProcs tclNotifierHooks; /* * TIP #233 (Virtualized Time) |