diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | unix/tkUnixEvent.c | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2005-12-07 Jeff Hobbs <jeffh@ActiveState.com> + + * unix/tkUnixEvent.c (OpenIM): remove extraneous const + 2005-12-06 Donal K. Fellows <donal.k.fellows@manchester.ac.uk> * doc/ConfigWidg.3 (TK_CONFIG_OPTION_SPECIFIED): Mentioned that the diff --git a/unix/tkUnixEvent.c b/unix/tkUnixEvent.c index 463db3a..d312997 100644 --- a/unix/tkUnixEvent.c +++ b/unix/tkUnixEvent.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: tkUnixEvent.c,v 1.18 2005/12/05 17:02:02 rmax Exp $ + * RCS: @(#) $Id: tkUnixEvent.c,v 1.19 2005/12/07 17:32:52 hobbs Exp $ */ #include "tkInt.h" @@ -650,7 +650,7 @@ OpenIM( while ((modifiers = strchr(modifiers, '@')) != NULL) { if (strncmp(modifiers, "@im=", 4) == 0) { /* The first "@im=" entry wins */ - const char const *scim = "@im=SCIM"; + const char *scim = "@im=SCIM"; if (strncmp(modifiers, scim, strlen(scim)) == 0) { /* If it is SCIM, we override it */ if (XSetLocaleModifiers("@im=local") == NULL) { |