summaryrefslogtreecommitdiff
path: root/src/term.c
diff options
context:
space:
mode:
authorMichael Jennings <mej@kainx.org>2005-08-16 14:50:49 +0000
committerMichael Jennings <mej@kainx.org>2005-08-16 14:50:49 +0000
commit0ceb45845762d41113e4cce75a1036682d78f073 (patch)
tree17e4a2413caaf63c5d6c45b68737bd385366705b /src/term.c
parentf79bf997cf47559f97cec96c2ce39cc98141b2ec (diff)
downloadeterm-0ceb45845762d41113e4cce75a1036682d78f073.tar.gz
Tue Aug 16 10:48:12 2005 Michael Jennings (mej)
Applied a fix from benny@sweetfactory.org for a typo in keysym handling. Fixed percent signs in menu files thanks to Yasufumi Haga <yasufumi.haga@nifty.com>. Fixed E IPC version check to work with old and new schemes. ---------------------------------------------------------------------- SVN revision: 16213
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c
index 79674d7..76f5605 100644
--- a/src/term.c
+++ b/src/term.c
@@ -677,7 +677,7 @@ lookup_key(XEvent * ev)
}
/* Process extended keysyms. This is where the conversion to escape sequences happens. */
- if (keysym >= 0xfe00 && keysym <= 0xffff) {
+ if (keysym >= 0xff00 && keysym <= 0xffff) {
#ifdef KEYSYM_ATTRIBUTE
/* The "keysym" attribute in the config file gets handled here. */
if (!(shft | ctrl) && KeySym_map[keysym - 0xff00] != NULL) {