diff options
author | 2009-08-09 22:05:01 +0000 | |
---|---|---|
committer | 2009-08-09 22:05:01 +0000 | |
commit | 10a77ed99c35c0f2b9f15a195ed3cae9d05f2a6e (patch) | |
tree | e02dd2d62c69d087f7cb46e7f817d238e0035bd0 | |
parent | sync to 1.8.4: full .An -[no]split support (diff) | |
download | wireguard-openbsd-10a77ed99c35c0f2b9f15a195ed3cae9d05f2a6e.tar.xz wireguard-openbsd-10a77ed99c35c0f2b9f15a195ed3cae9d05f2a6e.zip |
sync to 1.8.4: remove superfluous FIXMEs
-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 *); |