diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-12-17 22:04:05 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-12-17 22:04:05 +0000 |
commit | 9684073fcfe22a3fb5c6069bf9c0445ed170dff9 (patch) | |
tree | 8554b1d7eed763565a55eea1addddfd63c000a5a /sys/dev/wscons | |
parent | cb97e819af08eeeeac1481ad56f19e924be6808e (diff) |
When processing a compose sequence of a dead accent and the spacebar, put
the ``mundane'' accent: apostrophe instead of acute, and comma instead of
cedilla. This matches what existing keyboard layouts with dead keys do.
From Maurice Janssen via otto@
Diffstat (limited to 'sys/dev/wscons')
-rw-r--r-- | sys/dev/wscons/wskbdutil.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/wscons/wskbdutil.c b/sys/dev/wscons/wskbdutil.c index 92e49bc82f2..b3ce4296ee7 100644 --- a/sys/dev/wscons/wskbdutil.c +++ b/sys/dev/wscons/wskbdutil.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wskbdutil.c,v 1.5 2003/12/06 14:46:44 grange Exp $ */ +/* $OpenBSD: wskbdutil.c,v 1.6 2006/12/17 22:04:04 miod Exp $ */ /* $NetBSD: wskbdutil.c,v 1.7 1999/12/21 11:59:13 drochner Exp $ */ /*- @@ -68,12 +68,12 @@ static struct compose_tab_s { { { KS_less, KS_less }, KS_guillemotleft }, { { KS_greater, KS_greater }, KS_guillemotright }, { { KS_question, KS_question }, KS_questiondown }, - { { KS_dead_acute, KS_space }, KS_acute }, + { { KS_dead_acute, KS_space }, KS_apostrophe }, { { KS_dead_grave, KS_space }, KS_grave }, { { KS_dead_tilde, KS_space }, KS_asciitilde }, { { KS_dead_circumflex, KS_space }, KS_asciicircum }, { { KS_dead_diaeresis, KS_space }, KS_quotedbl }, - { { KS_dead_cedilla, KS_space }, KS_cedilla }, + { { KS_dead_cedilla, KS_space }, KS_comma }, { { KS_dead_circumflex, KS_A }, KS_Acircumflex }, { { KS_dead_diaeresis, KS_A }, KS_Adiaeresis }, { { KS_dead_grave, KS_A }, KS_Agrave }, |