diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-04 19:53:01 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-17 09:40:16 +0700 |
commit | 7067111589bd57a44ba1eaba8cbc2d7e95811d2a (patch) | |
tree | b0eaa0b0316dcb0d6498c2254d1e2c762d6d0b71 /development/xemacs/patches/mod-shift.patch | |
parent | 20f9f3bb1e450874bcafa99269863bd471032543 (diff) |
development/xemacs: Updated for version 21.5.34.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/xemacs/patches/mod-shift.patch')
-rw-r--r-- | development/xemacs/patches/mod-shift.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/development/xemacs/patches/mod-shift.patch b/development/xemacs/patches/mod-shift.patch deleted file mode 100644 index 9ca292a7ef..0000000000 --- a/development/xemacs/patches/mod-shift.patch +++ /dev/null @@ -1,30 +0,0 @@ ---- xemacs-21.4.15/src/event-Xt.c.orig 2004-07-09 11:02:02.000000000 -0400 -+++ xemacs-21.4.15/src/event-Xt.c 2004-07-09 11:02:23.000000000 -0400 -@@ -1253,7 +1253,26 @@ - KeySym bot = XLookupKeysym (ev, Mode_switch_p ? 2 : 0); - KeySym top = XLookupKeysym (ev, Mode_switch_p ? 3 : 1); - if (top && bot && top != bot) -- modifiers &= ~XEMACS_MOD_SHIFT; -+ // SAM -+ switch(top) { -+ case 0x1008fe01: -+ case 0x1008fe02: -+ case 0x1008fe03: -+ case 0x1008fe04: -+ case 0x1008fe05: -+ case 0x1008fe06: -+ case 0x1008fe07: -+ case 0x1008fe08: -+ case 0x1008fe09: -+ case 0x1008fe0a: -+ case 0x1008fe0b: -+ case 0x1008fe0c: -+ break; -+ default: -+ modifiers &= ~XEMACS_MOD_SHIFT; -+ break; -+ } -+ //SAM - } - emacs_event->event_type = key_press_event; - emacs_event->timestamp = ev->time; |