summaryrefslogtreecommitdiff
path: root/include/manconfig.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'include/manconfig.h.in')
-rw-r--r--include/manconfig.h.in8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/manconfig.h.in b/include/manconfig.h.in
index 5c3ad648..d9605c9b 100644
--- a/include/manconfig.h.in
+++ b/include/manconfig.h.in
@@ -33,6 +33,8 @@
#ifndef MANCONFIG_H
#define MANCONFIG_H
+#include <stdbool.h>
+
#include "xvasprintf.h"
/* STD_SECTIONS must contain all of your man hierarchy subdirectories. The
@@ -75,10 +77,6 @@
/* #define FAVOUR_STRAYCATS */
-/* The maximum number of manual page hierarchies expected in the manpath.
- Also the maximum amount of non-comment lines in the config file. */
-#define MAXDIRS 128
-
/* CATMODE is the mode of the formatted cat pages that we create. The man-db
package can be run in 4 main modes, 3 of which are relatively secure and
allow the cats to be non world writable. The `wide open' mode requires
@@ -340,7 +338,7 @@ extern struct compression comp_list[];
extern char *create_tempdir (const char *template)
ATTRIBUTE_WARN_UNUSED_RESULT;
-extern int debug_level; /* shows whether -d issued */
+extern bool debug_level; /* shows whether -d issued */
extern void init_debug (void);
extern void debug (const char *message, ...) ATTRIBUTE_FORMAT_PRINTF(1, 2);
extern void debug_error (const char *message, ...)