diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-06-16 20:26:38 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-06-16 20:26:38 +0000 |
commit | 8d23c41433df577e650c22cd7a844cfd93b94428 (patch) | |
tree | fc4880b0d88462c613f911f6be1d8d997a1e2adc /sys/dev | |
parent | 255055a1f609c2d67a46b6ef666fadb473f1a058 (diff) |
Provide more "dead_symbol + space -> symbol" entries in the compose table;
fixes PR #3295
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/wscons/wskbdutil.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/wscons/wskbdutil.c b/sys/dev/wscons/wskbdutil.c index 11b946093d6..1174a90a627 100644 --- a/sys/dev/wscons/wskbdutil.c +++ b/sys/dev/wscons/wskbdutil.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wskbdutil.c,v 1.3 2002/03/14 01:27:03 millert Exp $ */ +/* $OpenBSD: wskbdutil.c,v 1.4 2003/06/16 20:26:37 miod Exp $ */ /* $NetBSD: wskbdutil.c,v 1.7 1999/12/21 11:59:13 drochner Exp $ */ /*- @@ -72,6 +72,8 @@ static struct compose_tab_s { { { 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_circumflex, KS_A }, KS_Acircumflex }, { { KS_dead_diaeresis, KS_A }, KS_Adiaeresis }, { { KS_dead_grave, KS_A }, KS_Agrave }, |