diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2008-10-26 12:45:04 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2008-10-26 12:45:04 (GMT) |
| commit | 4310c8359d91632ac8d7a9a5d938dd9ce3073b69 (patch) | |
| tree | 38d0791f589c2ab97e01e287a9a2cdc9dd091461 /unix/tclXtNotify.c | |
| parent | cb50d058472ae87ca38f4efd538db82f7fdef20b (diff) | |
| download | tcl-4310c8359d91632ac8d7a9a5d938dd9ce3073b69.zip tcl-4310c8359d91632ac8d7a9a5d938dd9ce3073b69.tar.gz tcl-4310c8359d91632ac8d7a9a5d938dd9ce3073b69.tar.bz2 | |
Style improvements - invoking callbacks without visual junk.
Diffstat (limited to 'unix/tclXtNotify.c')
| -rw-r--r-- | unix/tclXtNotify.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclXtNotify.c b/unix/tclXtNotify.c index f21e938..46f5657 100644 --- a/unix/tclXtNotify.c +++ b/unix/tclXtNotify.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclXtNotify.c,v 1.9 2007/04/16 13:36:36 dkf Exp $ + * RCS: @(#) $Id: tclXtNotify.c,v 1.10 2008/10/26 12:45:04 dkf Exp $ */ #include <X11/Intrinsic.h> @@ -596,7 +596,7 @@ FileHandlerEventProc( mask = filePtr->readyMask & filePtr->mask; filePtr->readyMask = 0; if (mask != 0) { - (*filePtr->proc)(filePtr->clientData, mask); + filePtr->proc(filePtr->clientData, mask); } break; } |
