changeset 36:34864d021d7e

Accept 'äöå' in input.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 12 Aug 2008 21:28:10 +0300
parents c725b0dc6268
children 8749f6517491
files nnchat.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/nnchat.c	Wed Aug 06 01:02:57 2008 +0300
+++ b/nnchat.c	Tue Aug 12 21:28:10 2008 +0300
@@ -1288,7 +1288,7 @@
 				break;
 				
 			default:
-				if (isprint(c)) {
+				if (isprint(c) || c == 0xe4 || c == 0xf6 || c == 0xc4 || c == 0xd6) {
 					if (insertMode)
 						insertBuf(editBuf, editBuf->pos, c);
 					else