On Mon, 1 Oct 2001, Steven Hanley wrote: > I have tried changing the key X sees when the enter key is pressed on > my pismo keyboard. > > using > "keycode 108 = Control_L" > > it seems to work fine as the xev program sees it as Control L or > Control R, however X apps dont seem to see the change, emacs wont let > me do C-whatever...
Besides changing the keysym, you must update the modifier map: keycode 108 = Control_L add Control = Control_L See "man xmodmap" for details.

