added PDX constant
[unix-history] / usr / src / usr.bin / ex / ex_tune.h
index 7263f22..c2e91b4 100644 (file)
@@ -1,5 +1,5 @@
-/* Copyright (c) 1980 Regents of the University of California */
-/* sccs id:    @(#)ex_tune.h   6.2 %G%  */
+/* Copyright (c) 1981 Regents of the University of California */
+/* sccs id:    @(#)ex_tune.h   7.3     %G%  */
 /*
  * Definitions of editor parameters and limits
  */
 /*
  * Definitions of editor parameters and limits
  */
  * "/usr/lib/..." here, "/lib" will be tried only for strings.
  */
 #include "local/uparm.h"
  * "/usr/lib/..." here, "/lib" will be tried only for strings.
  */
 #include "local/uparm.h"
-#define        EXRECOVER       libpath(ex3.6recover)
-#define        EXPRESERVE      libpath(ex3.6preserve)
+#define        EXRECOVER       libpath(ex3.7recover)
+#define        EXPRESERVE      libpath(ex3.7preserve)
 #ifndef VMUNIX
 #ifndef VMUNIX
-#define        EXSTRINGS       libpath(ex3.6strings)
+#define        EXSTRINGS       libpath(ex3.7strings)
 #endif
 
 /*
 #endif
 
 /*
 #define        ESIZE           512
 #define CRSIZE         1024
 #else
 #define        ESIZE           512
 #define CRSIZE         1024
 #else
+#ifdef u370
+#define LBSIZE         4096
+#define ESIZE          512
+#define CRSIZE         4096
+#else
 #define        LBSIZE          512             /* Line length */
 #define        ESIZE           128             /* Size of compiled re */
 #define CRSIZE         512
 #endif
 #define        LBSIZE          512             /* Line length */
 #define        ESIZE           128             /* Size of compiled re */
 #define CRSIZE         512
 #endif
+#endif
 #define        RHSSIZE         256             /* Size of rhs of substitute */
 #define        NBRA            9               /* Number of re \( \) pairs */
 #define        TAGSIZE         32              /* Tag length */
 #define        RHSSIZE         256             /* Size of rhs of substitute */
 #define        NBRA            9               /* Number of re \( \) pairs */
 #define        TAGSIZE         32              /* Tag length */
  * Attention is the interrupt character (normally 0177 -- delete).
  * Quit is the quit signal (normally FS -- control-\) and quits open/visual.
  */
  * Attention is the interrupt character (normally 0177 -- delete).
  * Quit is the quit signal (normally FS -- control-\) and quits open/visual.
  */
-#define        ATTN    (-2)
+#define        ATTN    (-2)    /* mjm: (char) ??  */
 #define        QUIT    ('\\' & 037)
 #define        QUIT    ('\\' & 037)