Module Name:    src
Committed By:   drochner
Date:           Fri Feb  5 18:26:38 UTC 2010

Modified Files:
        src/sys/dev/wscons: wskbdutil.c

Log Message:
add some missing (mostly hungarian or polish) dead accent combinations,
from lkundrak's netbsd-sk_cz-howto


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/dev/wscons/wskbdutil.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/wscons/wskbdutil.c
diff -u src/sys/dev/wscons/wskbdutil.c:1.17 src/sys/dev/wscons/wskbdutil.c:1.18
--- src/sys/dev/wscons/wskbdutil.c:1.17	Thu Jan 28 22:36:19 2010
+++ src/sys/dev/wscons/wskbdutil.c	Fri Feb  5 18:26:38 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: wskbdutil.c,v 1.17 2010/01/28 22:36:19 drochner Exp $	*/
+/*	$NetBSD: wskbdutil.c,v 1.18 2010/02/05 18:26:38 drochner Exp $	*/
 
 /*-
  * Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: wskbdutil.c,v 1.17 2010/01/28 22:36:19 drochner Exp $");
+__KERNEL_RCSID(0, "$NetBSD: wskbdutil.c,v 1.18 2010/02/05 18:26:38 drochner Exp $");
 
 #include <sys/param.h>
 #include <sys/errno.h>
@@ -255,10 +255,20 @@
 	{ { KS_dead_diaeresis,		KS_e },			KS_ediaeresis },
 	{ { KS_dead_diaeresis,		KS_o },			KS_odiaeresis },
 	{ { KS_dead_diaeresis,		KS_u },			KS_udiaeresis },
+	{ { KS_dead_dotaccent,		KS_Z },			KS_Zabovedot },
+	{ { KS_dead_dotaccent,		KS_z },			KS_zabovedot },
+	{ { KS_dead_hungarumlaut,	KS_O },			KS_Odoubleacute },
+	{ { KS_dead_hungarumlaut,	KS_U },			KS_Udoubleacute },
+	{ { KS_dead_hungarumlaut,	KS_o },			KS_odoubleacute },
+	{ { KS_dead_hungarumlaut,	KS_u },			KS_udoubleacute },
 	{ { KS_dead_ogonek,		KS_A },			KS_Aogonek },
 	{ { KS_dead_ogonek,		KS_a },			KS_aogonek },
 	{ { KS_dead_ogonek,		KS_E },			KS_Eogonek },
-	{ { KS_dead_ogonek,		KS_e },			KS_eogonek }
+	{ { KS_dead_ogonek,		KS_e },			KS_eogonek },
+	{ { KS_dead_abovering,		KS_U },			KS_Uabovering },
+	{ { KS_dead_abovering,		KS_u },			KS_uabovering },
+	{ { KS_dead_slash,		KS_L },			KS_Lstroke },
+	{ { KS_dead_slash,		KS_l },			KS_lstroke }
 };
 
 #define COMPOSE_SIZE	sizeof(compose_tab)/sizeof(compose_tab[0])

Reply via email to