Mercurial > emacs
comparison src/xterm.c @ 109151:004119b4b62e
Fix conflicting declarations of x_get_keysym_name
* xterm.c (x_get_keysym_name): Change type of parameter to int.
* lisp.h: Declare x_get_keysym_name.
* keyboard.c (modify_event_symbol): Don't declare
x_get_keysym_name here.
author | Andreas Schwab <schwab@linux-m68k.org> |
---|---|
date | Tue, 06 Jul 2010 15:33:34 +0200 |
parents | a08a6559b47b |
children | f8660b83cdbf |
comparison
equal
deleted
inserted
replaced
109150:3f9a67cdf9f7 | 109151:004119b4b62e |
---|---|
3593 } | 3593 } |
3594 | 3594 |
3595 /* Convert a keysym to its name. */ | 3595 /* Convert a keysym to its name. */ |
3596 | 3596 |
3597 char * | 3597 char * |
3598 x_get_keysym_name (KeySym keysym) | 3598 x_get_keysym_name (int keysym) |
3599 { | 3599 { |
3600 char *value; | 3600 char *value; |
3601 | 3601 |
3602 BLOCK_INPUT; | 3602 BLOCK_INPUT; |
3603 value = XKeysymToString (keysym); | 3603 value = XKeysymToString (keysym); |