summaryrefslogtreecommitdiffstats
path: root/unix/tkUnixEvent.c
diff options
context:
space:
mode:
authorhobbs <hobbs>2005-12-07 17:32:52 (GMT)
committerhobbs <hobbs>2005-12-07 17:32:52 (GMT)
commit163aff0648455eb55f659413644dddb4ed4f73bf (patch)
treecb6c2f1fc364a717fa4990ed95162ddc152653cd /unix/tkUnixEvent.c
parent2d935b1c55d3045e7783bc9476e9afca58a3441d (diff)
downloadtk-163aff0648455eb55f659413644dddb4ed4f73bf.zip
tk-163aff0648455eb55f659413644dddb4ed4f73bf.tar.gz
tk-163aff0648455eb55f659413644dddb4ed4f73bf.tar.bz2
remove extraneous const
Diffstat (limited to 'unix/tkUnixEvent.c')
-rw-r--r--unix/tkUnixEvent.c4
1 files changed, 2 insertions, 2 deletions
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) {