diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2008-10-26 18:34:03 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2008-10-26 18:34:03 (GMT) |
| commit | 8a610f15b701ab08fca6becf78696072369b355c (patch) | |
| tree | b47f8826ac440515804f80e59f434ef1dff42fd1 /generic/tclCompExpr.c | |
| parent | 4310c8359d91632ac8d7a9a5d938dd9ce3073b69 (diff) | |
| download | tcl-8a610f15b701ab08fca6becf78696072369b355c.zip tcl-8a610f15b701ab08fca6becf78696072369b355c.tar.gz tcl-8a610f15b701ab08fca6becf78696072369b355c.tar.bz2 | |
Style improvements - invoking callbacks without visual junk.
Diffstat (limited to 'generic/tclCompExpr.c')
| -rw-r--r-- | generic/tclCompExpr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclCompExpr.c b/generic/tclCompExpr.c index f6ef042..9c1ee74 100644 --- a/generic/tclCompExpr.c +++ b/generic/tclCompExpr.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCompExpr.c,v 1.97 2008/02/28 20:40:24 dgp Exp $ + * RCS: @(#) $Id: tclCompExpr.c,v 1.98 2008/10/26 18:34:04 dkf Exp $ */ #include "tclInt.h" @@ -1823,7 +1823,7 @@ ParseLexeme( *lexemePtr = END; return 0; } - byte = (unsigned char)(*start); + byte = UCHAR(*start); if (byte < sizeof(Lexeme) && Lexeme[byte] != 0) { *lexemePtr = Lexeme[byte]; return 1; |
