aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/main.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2015-04-18 16:06:39 +0000
committerIngo Schwarze <schwarze@openbsd.org>2015-04-18 16:06:39 +0000
commit90913383a1a42f4ed3816d5206553df9db14e839 (patch)
tree0e3fb00ff7803497b660d3b23646ab4b955be4f3 /main.c
parent98e0e3ab0d2ae5d7be8016bbad59fa3a08d34b66 (diff)
downloadmandoc-90913383a1a42f4ed3816d5206553df9db14e839.tar.gz
mandoc-90913383a1a42f4ed3816d5206553df9db14e839.tar.zst
mandoc-90913383a1a42f4ed3816d5206553df9db14e839.zip
Replace the structs mdoc and man by a unified struct roff_man.
Almost completely mechanical, no functional change. Written on the train from Exeter to London returning from p2k15.
Diffstat (limited to 'main.c')
-rw-r--r--main.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/main.c b/main.c
index 2872259d..8417f8cd 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.233 2015/04/16 16:36:21 schwarze Exp $ */
+/* $Id: main.c,v 1.234 2015/04/18 16:06:40 schwarze Exp $ */
/*
* Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010-2012, 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>
@@ -58,8 +58,8 @@ enum outmode {
OUTMODE_ONE
};
-typedef void (*out_mdoc)(void *, const struct mdoc *);
-typedef void (*out_man)(void *, const struct man *);
+typedef void (*out_mdoc)(void *, const struct roff_man *);
+typedef void (*out_man)(void *, const struct roff_man *);
typedef void (*out_free)(void *);
enum outt {
@@ -632,8 +632,8 @@ static void
parse(struct curparse *curp, int fd, const char *file)
{
enum mandoclevel rctmp;
- struct mdoc *mdoc;
- struct man *man;
+ struct roff_man *mdoc;
+ struct roff_man *man;
/* Begin by parsing the file itself. */