Bug #7097: do case-insensitive comparison for some hotkeys.

xkb's strcasecmp implementation has been moved to the dix so it's now
safe to just use strcasecmp().
This commit is contained in:
Tilman Sauerbeck
2006-07-08 11:33:44 +02:00
parent 5416f90e9c
commit 63f13e01ee
7 changed files with 68 additions and 32 deletions

View File

@@ -820,4 +820,10 @@ typedef struct {
SelectionCallbackKind kind;
} SelectionInfoRec;
/* strcasecmp.c */
#if NEED_STRCASECMP
#define strcasecmp xstrcasecmp
extern int xstrcasecmp(char *s1, char *s2);
#endif
#endif /* DIX_H */