Module Name:    src
Committed By:   tnozaki
Date:           Mon Nov 14 13:29:07 UTC 2011

Modified Files:
        src/dist/nvi/common: key.h

Log Message:
nvi cannot display international character(west european accented chars).
reported by Ian D. Leroux at current-users, thanks a lot!


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/dist/nvi/common/key.h

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

Modified files:

Index: src/dist/nvi/common/key.h
diff -u src/dist/nvi/common/key.h:1.2 src/dist/nvi/common/key.h:1.3
--- src/dist/nvi/common/key.h:1.2	Mon Mar 21 14:53:02 2011
+++ src/dist/nvi/common/key.h	Mon Nov 14 13:29:07 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: key.h,v 1.2 2011/03/21 14:53:02 tnozaki Exp $ */
+/*	$NetBSD: key.h,v 1.3 2011/11/14 13:29:07 tnozaki Exp $ */
 
 /*-
  * Copyright (c) 1991, 1993, 1994
@@ -28,7 +28,7 @@
     sp->conv.input2int(sp, n, nlen, &(cw), &wlen, &w)
 #define CONST
 #define CHAR_WIDTH(sp, ch)  wcwidth(ch)
-#define INTISWIDE(c)	(!!(c >> 8))	    /* XXX wrong name */
+#define INTISWIDE(c)	(wctob(c) == EOF)	    /* XXX wrong name */
 #else
 #define FILE2INT5(sp,buf,n,nlen,w,wlen) \
     (w = n, wlen = nlen, 0)

Reply via email to