From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Wed, 23 Oct 1996 02:17:58 +0000 From: jm@mime.univ-paris8.fr jm@mime.univ-paris8.fr Subject: problem with compose key on sun keyboard (+ fix) Topicbox-Message-UUID: 4ff00846-eac8-11e9-9e20-41e7f4b1d025 Message-ID: <19961023021758.BwrODrzdpjy_lJPQAqgWMaxmuDGphcVKPAKDSHIZXl8@z> There is a bug in /sys/src/9/ss/screen.c : the compose key acts like a repeat key ; it is a problem for me, when I am trying to find the accent on my keyboard: the previous key is repeated. A simple fix is to move the kbdrepeat(1) in the kbdstate function in /sys/src/9/ss/screen.c, for example to : if(ch == 0xB6){ /* Compose */ kbdrepeat(0); collecting = 1; nk = 0; }else{ repeatc = ch; kbdrepeat(1); Or was it a feature?