diff options
author | dgp <dgp@users.sourceforge.net> | 2005-11-14 14:30:56 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-11-14 14:30:56 (GMT) |
commit | a7291cc35c9057e8853001ec9dfa09005e5ead25 (patch) | |
tree | 98ac615fca41ad33dd1c7e5182543bdfffeab5c1 /unix | |
parent | 1f3d41930a33bf010c0159ee6409e1ac74d81d61 (diff) | |
download | tk-a7291cc35c9057e8853001ec9dfa09005e5ead25.zip tk-a7291cc35c9057e8853001ec9dfa09005e5ead25.tar.gz tk-a7291cc35c9057e8853001ec9dfa09005e5ead25.tar.bz2 |
missing commas; typos?
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tkUnixFont.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/unix/tkUnixFont.c b/unix/tkUnixFont.c index f392c9b..000f050 100644 --- a/unix/tkUnixFont.c +++ b/unix/tkUnixFont.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: tkUnixFont.c,v 1.24 2005/11/14 11:54:21 dkf Exp $ + * RCS: @(#) $Id: tkUnixFont.c,v 1.25 2005/11/14 14:30:56 dgp Exp $ */ #include "tkUnixInt.h" @@ -466,8 +466,8 @@ static int Ucs2beToUtfProc( ClientData clientData, /* Not used. */ CONST char *src, /* Source string in Unicode. */ - int srcLen /* Source string length in bytes. */ - int flags /* Conversion control flags. */ + int srcLen, /* Source string length in bytes. */ + int flags, /* Conversion control flags. */ Tcl_EncodingState *statePtr,/* Place for conversion routine to store state * information used during a piecewise * conversion. Contents of statePtr are @@ -1661,7 +1661,7 @@ ReleaseSubFont( static FontFamily * AllocFontFamily( Display *display, /* Display in which font will be used. */ - XFontStruct *fontStructPtr /* Screen font whose FontFamily is to be + XFontStruct *fontStructPtr, /* Screen font whose FontFamily is to be * returned. */ int base) /* Non-zero if this font family is to be used * in the base font of a font object. */ |