summaryrefslogtreecommitdiffstats
path: root/man.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-06-26 15:36:37 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-06-26 15:36:37 +0000
commit8ee307fc9980fbb248f1ed3b9c0da115e8c79440 (patch)
tree66dccb2268cc430f3125d54205263d9fb915a5b6 /man.c
parenta7a9c3b662c1cf6ee6766d865a9dcc58376ea2c9 (diff)
downloadmandoc-8ee307fc9980fbb248f1ed3b9c0da115e8c79440.tar.gz
Churn-ish check-in getting mdoc_parseln() and man_parseln() to accept a
const struct regset pointer. No functionality.
Diffstat (limited to 'man.c')
-rw-r--r--man.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/man.c b/man.c
index 9f99c0ca..ad1a7df4 100644
--- a/man.c
+++ b/man.c
@@ -28,6 +28,7 @@
#include <string.h>
#include "mandoc.h"
+#include "regs.h"
#include "libman.h"
#include "libmandoc.h"
@@ -124,7 +125,8 @@ man_endparse(struct man *m)
int
-man_parseln(struct man *m, int ln, char *buf, int offs)
+man_parseln(struct man *m, const struct regset *regs,
+ int ln, char *buf, int offs)
{
if (MAN_HALT & m->flags)