From: Kees Bakker <spam@altium.nl>
To: linux-kernel@vger.kernel.org
Subject: Re: 2.6.12-rc2: Compose key doesn't work
Date: Thu, 14 Apr 2005 13:18:44 +0200 [thread overview]
Message-ID: <cb5.425e5193.abd94@altium.nl> (raw)
In-Reply-To: 4258F74D.2010905@keyaccess.nl
Rene Herman wrote:
> Hi Vojtech.
>
> I have mapped my right windows key to "Compose" in X:
>
> Section "InputDevice"
> Identifier "Keyboard0"
> Driver "kbd"
> Option "XkbModel" "pc104"
> Option "XkbLayout" "us"
> Option "XkbOptions" "compose:rwin"
> EndSection
>
> This worked fine upto 2.6.11.7, but doesn't under 2.6.12-rc2. The key
> doesn't seem to be doing anything anymore: "Compose-'-e" just gets me
> "'e" and so on.
This is caused by the change in drivers/input/keyboard/atkbd.c
By default atkbd_scroll is now set 1. This can be switched off on the
commandline if you want to try: atkbd.scroll=0
I'd vote for undoing the change. Here is a tiny patch.
diff -Nru a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c
--- a/drivers/input/keyboard/atkbd.c 2005-04-04 09:40:48 -07:00
+++ b/drivers/input/keyboard/atkbd.c 2005-04-04 09:40:48 -07:00
@@ -54,7 +54,7 @@
module_param_named(softraw, atkbd_softraw, bool, 0);
MODULE_PARM_DESC(softraw, "Use software generated rawmode");
-static int atkbd_scroll = 1;
+static int atkbd_scroll;
module_param_named(scroll, atkbd_scroll, bool, 0);
MODULE_PARM_DESC(scroll, "Enable scroll-wheel on MS Office and similar keyboards");
prev parent reply other threads:[~2005-04-14 11:19 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-04-10 9:52 2.6.12-rc2: Compose key doesn't work Rene Herman
2005-04-14 10:04 ` Domen Puncer
2005-05-26 12:23 ` Domen Puncer
2005-05-26 12:27 ` Vojtech Pavlik
2005-06-03 21:16 ` Wakko Warner
2005-06-03 21:37 ` Dmitry Torokhov
2005-05-26 15:45 ` Wakko Warner
2005-05-26 15:53 ` Vojtech Pavlik
2005-05-26 16:09 ` Wakko Warner
2005-05-30 14:25 ` Wakko Warner
2005-05-30 14:39 ` Vojtech Pavlik
2005-05-30 23:03 ` Rene Herman
2005-04-14 11:18 ` Kees Bakker [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cb5.425e5193.abd94@altium.nl \
--to=spam@altium.nl \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox