diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2008-10-26 12:45:04 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2008-10-26 12:45:04 (GMT) |
commit | c2a4f7e6129491089c0fa4d0202ed91617d29591 (patch) | |
tree | 38d0791f589c2ab97e01e287a9a2cdc9dd091461 /unix/tclXtNotify.c | |
parent | fa1e0944fbc80713ec2e806311d2aa6bdbbcbffb (diff) | |
download | tcl-c2a4f7e6129491089c0fa4d0202ed91617d29591.zip tcl-c2a4f7e6129491089c0fa4d0202ed91617d29591.tar.gz tcl-c2a4f7e6129491089c0fa4d0202ed91617d29591.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; } |