[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: lynx-dev lynx2.8.4dev.14 on OS/390 compile error
From: |
pg |
Subject: |
Re: lynx-dev lynx2.8.4dev.14 on OS/390 compile error |
Date: |
Thu, 9 Nov 2000 17:53:37 -0700 (MST) |
In a recent note, Thomas Dickey said:
> Date: Thu, 9 Nov 2000 17:52:42 -0500
>
> > Tom, have you any suggestions on style?
>
> not offhand - LYCharVals.h looks like a good place to patch.
>
Patch (attached) seems to fix it.
-- gil
--
StorageTek
INFORMATION made POWERFUL
########################################################################
%%% Created Thu Nov 9 17:21:21 MST 2000 by target lynx.patch. %%%
diff -bru orig/lynx2-8-4/src/LYCharVals.h lynx2-8-4/src/LYCharVals.h
--- orig/lynx2-8-4/src/LYCharVals.h Wed May 12 20:06:05 1999
+++ lynx2-8-4/src/LYCharVals.h Thu Nov 9 17:02:55 2000
@@ -17,6 +17,8 @@
#define CH_HICTL 0x3f
#define CH_NBSP 0x41
#define CH_SHY 0xca
+#define LYCharINTERRUPT1 0x03 /* Control-C */
+#define LYCharINTERRUPT2 0x2f /* Control-G */
#else /* EBCDIC */
#define CH_ESC 0033
#define CH_DEL 0177
@@ -24,6 +26,8 @@
#define CH_HICTL 0237
#define CH_NBSP 0240
#define CH_SHY 0255
+#define LYCharINTERRUPT1 0003 /* Control-C */
+#define LYCharINTERRUPT2 0007 /* Control-G */
#endif /* EBCDIC */
#endif /* CH_ESC */
diff -bru orig/lynx2-8-4/src/LYUtils.h lynx2-8-4/src/LYUtils.h
--- orig/lynx2-8-4/src/LYUtils.h Wed Oct 25 10:35:28 2000
+++ lynx2-8-4/src/LYUtils.h Thu Nov 9 17:04:33 2000
@@ -34,8 +34,7 @@
#define LYIsPipeCommand(s) ((s)[0] == '|')
-#define LYCharINTERRUPT1 (FROMASCII(3)) /* Control-C */
-#define LYCharINTERRUPT2 (FROMASCII(7)) /* Control-G */
+/* See definitions in src/LYCharVals.h. */
#define LYCharIsINTERRUPT(ch) ((ch) == LYCharINTERRUPT1 || ch ==
LYCharINTERRUPT2)
#if defined(DOSPATH) || defined(__EMX__)
; To UNSUBSCRIBE: Send "unsubscribe lynx-dev" to address@hidden
Fw: lynx-dev lynx2.8.4dev.14 on OS/390 compile error, Phil Sidler, 2000/11/09
Re: lynx-dev lynx2.8.4dev.14 on OS/390 compile error, Phil Sidler, 2000/11/14