summaryrefslogtreecommitdiff
path: root/textproc/texi2roff/patches/patch-ae
blob: dedbbad4859d7fb1802ca591b7d95c881d131acd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
$NetBSD: patch-ae,v 1.1.1.1 2001/05/30 11:45:41 agc Exp $

--- texi2roff.h.orig	Mon May 28 12:15:12 2001
+++ texi2roff.h	Mon May 28 12:54:22 2001
@@ -13,6 +13,7 @@
 #define MS	1
 #define ME	2
 #define MM	3
+#define MANDOC	4
 
 /* useful confusion-reducing things */
 #define STREQ(s,t) (*(s)==*(t) && strcmp(s, t)==0)
@@ -62,7 +63,14 @@
 #define DISPLAY    10	/* text block of the kind called a 'display' */
 #define INDEX	   11	/* index entry */
 #define INCLUDE	   12	/* include file command */
- 
+
+#define IFSET      13	/* test if a variable is set */
+#define IFCLEAR    14	/* test if a variable is not set */
+#define SET        15	/* set a variable */
+#define CLEAR      16	/* clear a variable */
+#define VALUE      17	/* lookup the value of a variable */
+#define DISCARDLINE 18	/* not supported -- discard to end of line */
+
 /* portability */
 #ifdef BSD
 #include <strings.h>