Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/wscons add some missing (mostly hungarian or polish)...
details: https://anonhg.NetBSD.org/src/rev/98b5318b2ac0
branches: trunk
changeset: 751491:98b5318b2ac0
user: drochner <drochner%NetBSD.org@localhost>
date: Fri Feb 05 18:26:38 2010 +0000
description:
add some missing (mostly hungarian or polish) dead accent combinations,
from lkundrak's netbsd-sk_cz-howto
diffstat:
sys/dev/wscons/wskbdutil.c | 16 +++++++++++++---
1 files changed, 13 insertions(+), 3 deletions(-)
diffs (40 lines):
diff -r 8ac75d935a89 -r 98b5318b2ac0 sys/dev/wscons/wskbdutil.c
--- a/sys/dev/wscons/wskbdutil.c Fri Feb 05 17:44:27 2010 +0000
+++ b/sys/dev/wscons/wskbdutil.c Fri Feb 05 18:26:38 2010 +0000
@@ -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])
Home |
Main Index |
Thread Index |
Old Index