summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland Mainz <roland.mainz@nrubsig.org>2004-12-16 03:38:45 +0000
committerRoland Mainz <roland.mainz@nrubsig.org>2004-12-16 03:38:45 +0000
commit87d35488eed69cb81adcd22691cdef907be94916 (patch)
treef0b690d54112dcb4a8d6e47d9d67e1fd8e5b40a8
parentb9bece29e9733bdf4bb44da6ced4d3e0e433f6e5 (diff)
//bugs.freedesktop.org/show_bug.cgi?id=1651) attachment #1484XORG-6_8_2XORG-6_8_1_904XORG-6_8_1_903XORG-6_8_1_902XORG-6_8_1_901XORG-6_8-branch
(https://bugs.freedesktop.org/attachment.cgi?id=1484): - set default XkbModel to pc105 (like legacy keyboard driver did) - fix autorepeat Patch by Matthieu Herrb and Petter Urkedal
-rw-r--r--src/kbd.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/kbd.c b/src/kbd.c
index f611a66..db2bc53 100644
--- a/src/kbd.c
+++ b/src/kbd.c
@@ -1,4 +1,4 @@
-/* $XdotOrg: xc/programs/Xserver/hw/xfree86/input/keyboard/kbd.c,v 1.5 2004/08/29 21:06:00 kem Exp $ */
+/* $XdotOrg: xc/programs/Xserver/hw/xfree86/input/keyboard/kbd.c,v 1.8 2004/12/06 21:51:11 herrb Exp $ */
/* $XFree86: xc/programs/Xserver/hw/xfree86/input/keyboard/kbd.c,v 1.8 2003/11/03 05:11:47 tsi Exp $ */
/*
@@ -12,7 +12,7 @@
* xf86Events.c and xf86Io.c which are
* Copyright 1990,91 by Thomas Roell, Dinkelscherben, Germany.
*/
-/* $XdotOrg: xc/programs/Xserver/hw/xfree86/input/keyboard/kbd.c,v 1.5 2004/08/29 21:06:00 kem Exp $ */
+/* $XdotOrg: xc/programs/Xserver/hw/xfree86/input/keyboard/kbd.c,v 1.8 2004/12/06 21:51:11 herrb Exp $ */
#define NEED_EVENTS
#include "X.h"
@@ -135,7 +135,7 @@ static const char *kbdDefaults[] = {
"Protocol", "standard",
"AutoRepeat", "500 30",
"XkbRules", __XKBDEFRULES__,
- "XkbModel", "pc101",
+ "XkbModel", "pc105",
"XkbLayout", "us",
"Panix106", "off",
"CustomKeycodes", "off",
@@ -372,6 +372,7 @@ KbdCtrl( DeviceIntPtr device, KeybdCtrl *ctrl)
}
#endif
pKbd->SetLeds(pInfo, pKbd->leds);
+ pKbd->autoRepeat = ctrl->autoRepeat;
return (Success);
}
@@ -720,14 +721,14 @@ PostKbdEvent(InputInfoPtr pInfo, unsigned int scanCode, Bool down)
/*
* check for an autorepeat-event
*/
- if (down) {
+ if (down && KeyPressed(keycode)) {
int num = keycode >> 3;
int bit = 1 << (keycode & 7);
- if ((keyc->down[num] & bit) &&
- ((kbdfeed->ctrl.autoRepeat != AutoRepeatModeOn) ||
- keyc->modifierMap[keycode] ||
- !(kbdfeed->ctrl.autoRepeats[num] & bit)))
- return;
+
+ if ((pKbd->autoRepeat != AutoRepeatModeOn) ||
+ keyc->modifierMap[keycode] ||
+ !(kbdfeed->ctrl.autoRepeats[num] & bit))
+ return;
}
if (UsePrefix) {