summaryrefslogtreecommitdiffstats
path: root/unix/tkUnixEvent.c
diff options
context:
space:
mode:
authorhobbs <hobbs>2005-12-05 22:40:08 (GMT)
committerhobbs <hobbs>2005-12-05 22:40:08 (GMT)
commit33407c1e1579876e80fc77eb1f8bfa350039435b (patch)
tree5e8516cc07123d0dff49d2a0a915497f07387c60 /unix/tkUnixEvent.c
parente0b6c2c00e0c074068259b2235d24b148e8c3e99 (diff)
downloadtk-33407c1e1579876e80fc77eb1f8bfa350039435b.zip
tk-33407c1e1579876e80fc77eb1f8bfa350039435b.tar.gz
tk-33407c1e1579876e80fc77eb1f8bfa350039435b.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 3e66ba8..0b13c71 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.11.2.4 2005/12/05 21:38:48 rmax Exp $
+ * RCS: @(#) $Id: tkUnixEvent.c,v 1.11.2.5 2005/12/05 22:40:08 hobbs Exp $
*/
#include "tkInt.h"
@@ -664,7 +664,7 @@ OpenIM(dispPtr)
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) {