date and time created 83/02/11 15:44:33 by rrh
[unix-history] / usr / src / usr.bin / ex / ex_re.h
index 78e9cb9..76c1713 100644 (file)
@@ -1,5 +1,5 @@
-/* Copyright (c) 1980 Regents of the University of California */
-/* sccs id:    @(#)ex_re.h     4.2 %G%  */
+/* Copyright (c) 1981 Regents of the University of California */
+/* sccs id:    @(#)ex_re.h     7.2     %G%  */
 /*
  * Regular expression definitions.
  * The regular expressions in ex are similar to those in ed,
 /*
  * Regular expression definitions.
  * The regular expressions in ex are similar to those in ed,
@@ -21,9 +21,9 @@ struct        regexp {
  * It would be possible to get rid of "re" by making it a stack parameter
  * to the appropriate routines.
  */
  * It would be possible to get rid of "re" by making it a stack parameter
  * to the appropriate routines.
  */
-struct regexp re;              /* Last re */
-struct regexp scanre;          /* Last scanning re */
-struct regexp subre;           /* Last substitute re */
+var struct     regexp re;              /* Last re */
+var struct     regexp scanre;          /* Last scanning re */
+var struct     regexp subre;           /* Last substitute re */
 
 /*
  * Defining circfl and expbuf like this saves us from having to change
 
 /*
  * Defining circfl and expbuf like this saves us from having to change
@@ -43,9 +43,9 @@ struct        regexp subre;           /* Last substitute re */
 /*
  * Definitions for substitute
  */
 /*
  * Definitions for substitute
  */
-char   *braslist[NBRA];        /* Starts of \(\)'ed text in lhs */
-char   *braelist[NBRA];        /* Ends... */
-char   rhsbuf[RHSSIZE];        /* Rhs of last substitute */
+var char       *braslist[NBRA];        /* Starts of \(\)'ed text in lhs */
+var char       *braelist[NBRA];        /* Ends... */
+var char       rhsbuf[RHSSIZE];        /* Rhs of last substitute */
 
 /*
  * Definitions of codes for the compiled re's.
 
 /*
  * Definitions of codes for the compiled re's.