BSD 4 release
[unix-history] / usr / src / cmd / ex / ex_tune.h
index 192e9b8..4a7e8ed 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) 1979 Regents of the University of California */
+/* Copyright (c) 1980 Regents of the University of California */
+/* sccs id:    @(#)ex_tune.h   6.2 10/30/80  */
 /*
  * 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.2recover)
-#define        EXPRESERVE      libpath(ex3.2preserve)
+#define        EXRECOVER       libpath(ex3.6recover)
+#define        EXPRESERVE      libpath(ex3.6preserve)
 #ifndef VMUNIX
 #ifndef VMUNIX
-#define        EXSTRINGS       libpath(ex3.2strings)
+#define        EXSTRINGS       libpath(ex3.6strings)
 #endif
 #endif
-#define        MASTERTAGS      libpath(tags)
 
 /*
  * If your system believes that tabs expand to a width other than
 
 /*
  * If your system believes that tabs expand to a width other than
 #ifdef VMUNIX
 #define        LBSIZE          1024
 #define        ESIZE           512
 #ifdef VMUNIX
 #define        LBSIZE          1024
 #define        ESIZE           512
+#define CRSIZE         1024
 #else
 #define        LBSIZE          512             /* Line length */
 #define        ESIZE           128             /* Size of compiled re */
 #else
 #define        LBSIZE          512             /* Line length */
 #define        ESIZE           128             /* Size of compiled re */
+#define CRSIZE         512
 #endif
 #define        RHSSIZE         256             /* Size of rhs of substitute */
 #define        NBRA            9               /* Number of re \( \) pairs */
 #define        TAGSIZE         32              /* Tag length */
 #endif
 #define        RHSSIZE         256             /* Size of rhs of substitute */
 #define        NBRA            9               /* Number of re \( \) pairs */
 #define        TAGSIZE         32              /* Tag length */
-#define        ONMSZ           32              /* Option name size */
+#define        ONMSZ           64              /* Option name size */
 #define        GBSIZE          256             /* Buffer size */
 #define        UXBSIZE         128             /* Unix command buffer size */
 #define        VBSIZE          128             /* Partial line max size in visual */
 #define        GBSIZE          256             /* Buffer size */
 #define        UXBSIZE         128             /* Unix command buffer size */
 #define        VBSIZE          128             /* Partial line max size in visual */
@@ -87,9 +89,9 @@
  * hardcopy mode when a line gets longer than 80 characters.
  */
 #ifndef VMUNIX
  * hardcopy mode when a line gets longer than 80 characters.
  */
 #ifndef VMUNIX
-#define        TUBELINES       40      /* Number of screen lines for visual */
+#define        TUBELINES       60      /* Number of screen lines for visual */
 #define        TUBECOLS        160     /* Number of screen columns for visual */
 #define        TUBECOLS        160     /* Number of screen columns for visual */
-#define        TUBESIZE        3400    /* Maximum screen size for visual */
+#define        TUBESIZE        5000    /* Maximum screen size for visual */
 #else
 #define        TUBELINES       66
 #define        TUBECOLS        160
 #else
 #define        TUBELINES       66
 #define        TUBECOLS        160
  * 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    0177
+#define        ATTN    (-2)
 #define        QUIT    ('\\' & 037)
 #define        QUIT    ('\\' & 037)