freebsd-ports/chinese/pine4/files/patch-ar
Vanilla I. Shu 235753a06f Add a lot of patches of chinese menu.
Submitted by:	maintainer
1998-02-02 14:34:45 +00:00

8 lines
390 B
Text

--- pico/estruct.h.orig Sat Dec 28 02:40:35 1996
+++ pico/estruct.h Sat Dec 28 02:41:45 1996
@@ -114,6 +114,6 @@
#define LOBIT_CHAR(C) ((C) > 0x1f && (C) < 0x7f)
#define HIBIT_CHAR(C) ((C) > 0x7f && (C) <= 0xff)
#define HIBIT_OK(C) (!(gmode & MDHBTIGN))
-#define VALID_KEY(C) (LOBIT_CHAR(C) || (HIBIT_OK(C) && HIBIT_CHAR(C)))
+#define VALID_KEY(ch) (((ch) & 0x80) ? 1 : LOBIT_CHAR(ch))