aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2009-05-23 16:12:20 +0200
committerdakkar <dakkar@thenautilus.net>2010-04-25 13:41:26 +0100
commit4ecc6c458fd93add8f221bdc1e9987ea9cb278fc (patch)
treee57750354ae1c1949a934b4065336bbc5ec9e905
parentaligned to Xorg coding style (diff)
downloadxf86-input-evdev-4ecc6c458fd93add8f221bdc1e9987ea9cb278fc.tar.gz
xf86-input-evdev-4ecc6c458fd93add8f221bdc1e9987ea9cb278fc.tar.bz2
xf86-input-evdev-4ecc6c458fd93add8f221bdc1e9987ea9cb278fc.zip
last touch-ups
-rw-r--r--man/Makefile.am2
-rw-r--r--man/evdev.man1
-rw-r--r--src/evdev.c2
3 files changed, 3 insertions, 2 deletions
diff --git a/man/Makefile.am b/man/Makefile.am
index 4135c47..6e0bd15 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -48,7 +48,7 @@ MAN_SUBSTS = \
-e 's|__xservername__|Xorg|g' \
-e 's|__xconfigfile__|xorg.conf|g' \
-e 's|__projectroot__|$(prefix)|g' \
- -e 's|__xkb_path__|$(XKBPATH)|g' \
+ -e 's|__xkb_path__|$(XKBPATH)|g' \
-e 's|__appmansuffix__|$(APP_MAN_SUFFIX)|g' \
-e 's|__drivermansuffix__|$(DRIVER_MAN_SUFFIX)|g' \
-e 's|__adminmansuffix__|$(ADMIN_MAN_SUFFIX)|g' \
diff --git a/man/evdev.man b/man/evdev.man
index 9546d20..897ee9d 100644
--- a/man/evdev.man
+++ b/man/evdev.man
@@ -195,6 +195,7 @@ the equal sign must be an X11 keycode (look it up in the
file; it can be between 8 and 255). Integers can be specified as in C
source files (base-10, base-8 if they start with 0, base-16 if they
start with 0x).
+
.SH SUPPORTED PROPERTIES
The following properties are provided by the
.B evdev
diff --git a/src/evdev.c b/src/evdev.c
index c826fa0..13f81b0 100644
--- a/src/evdev.c
+++ b/src/evdev.c
@@ -133,7 +133,7 @@ static Atom prop_btn_label = 0;
#endif
static uint16_t
-remapKey(EvdevPtr ev, uint16_t code)
+remapKey(EvdevPtr ev, uint16_t code)
{
uint8_t slice=code/256;
uint8_t offs=code%256;