Delete two preprocessor constants that are no longer used.
authorschwarze <schwarze@openbsd.org>
Thu, 15 Oct 2015 23:35:38 +0000 (23:35 +0000)
committerschwarze <schwarze@openbsd.org>
Thu, 15 Oct 2015 23:35:38 +0000 (23:35 +0000)
Patch from Michael Reed <m dot reed at mykolab dot com>.

usr.bin/mandoc/mandoc.c
usr.bin/mandoc/roff.c

index 3e56edf..612a706 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mandoc.c,v 1.64 2015/10/13 23:30:42 schwarze Exp $ */
+/*     $OpenBSD: mandoc.c,v 1.65 2015/10/15 23:35:38 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2011-2015 Ingo Schwarze <schwarze@openbsd.org>
@@ -30,8 +30,6 @@
 #include "mandoc_aux.h"
 #include "libmandoc.h"
 
-#define DATESIZE 32
-
 static int      a2time(time_t *, const char *, const char *);
 static char    *time2a(time_t);
 
index a32d474..ffd1892 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: roff.c,v 1.151 2015/10/13 22:57:49 schwarze Exp $ */
+/*     $OpenBSD: roff.c,v 1.152 2015/10/15 23:35:38 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010-2015 Ingo Schwarze <schwarze@openbsd.org>
@@ -31,9 +31,6 @@
 #include "roff_int.h"
 #include "libroff.h"
 
-/* Maximum number of nested if-else conditionals. */
-#define        RSTACK_MAX      128
-
 /* Maximum number of string expansions per line, to break infinite loops. */
 #define        EXPAND_LIMIT    1000