diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2009-08-09 22:05:02 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2009-08-09 22:05:02 +0000 |
commit | 19b887359c4b05f1d1249927d8d894b26647c4ba (patch) | |
tree | 1df1bd69f1924bf493302cc1c68fa9c8fbbd1908 /usr.bin/mandoc | |
parent | ce41b1e5d4cafacc6631f97010f459dd7cf4b804 (diff) |
sync to 1.8.4: remove superfluous FIXMEs
Diffstat (limited to 'usr.bin/mandoc')
-rw-r--r-- | usr.bin/mandoc/mdoc.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/mandoc/mdoc.h b/usr.bin/mandoc/mdoc.h index ca599499f4b..4b7fa7bead9 100644 --- a/usr.bin/mandoc/mdoc.h +++ b/usr.bin/mandoc/mdoc.h @@ -1,4 +1,4 @@ -/* $Id: mdoc.h,v 1.11 2009/07/26 01:59:46 schwarze Exp $ */ +/* $Id: mdoc.h,v 1.12 2009/08/09 22:05:01 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -258,7 +258,6 @@ struct mdoc_node { enum mdoc_type type; enum mdoc_sec sec; - /* FIXME: union/struct this with #defines. */ struct mdoc_arg *args; /* BLOCK/ELEM */ struct mdoc_node *head; /* BLOCK */ struct mdoc_node *body; /* BLOCK */ @@ -272,7 +271,7 @@ struct mdoc_node { #define MDOC_IGN_CHARS (1 << 3) /* Ignore disallowed chars. */ /* Call-backs for parse messages. */ -/* FIXME: unify somehow with man_cb. */ + struct mdoc_cb { int (*mdoc_err)(void *, int, int, const char *); int (*mdoc_warn)(void *, int, int, const char *); |