diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-06-26 15:36:37 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-06-26 15:36:37 +0000 |
commit | 8ee307fc9980fbb248f1ed3b9c0da115e8c79440 (patch) | |
tree | 66dccb2268cc430f3125d54205263d9fb915a5b6 /mdoc.3 | |
parent | a7a9c3b662c1cf6ee6766d865a9dcc58376ea2c9 (diff) | |
download | mandoc-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 'mdoc.3')
-rw-r--r-- | mdoc.3 | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -29,6 +29,7 @@ .Nd mdoc macro compiler library .Sh SYNOPSIS .In mandoc.h +.In regs.h .In mdoc.h .Vt extern const char * const * mdoc_macronames; .Vt extern const char * const * mdoc_argnames; @@ -43,7 +44,12 @@ .Ft "const struct mdoc_node *" .Fn mdoc_node "const struct mdoc *mdoc" .Ft int -.Fn mdoc_parseln "struct mdoc *mdoc" "int line" "char *buf" +.Fo mdoc_parseln +.Fa "struct mdoc *mdoc" +.Fa "const struct regset *regs" +.Fa "int line" +.Fa "char *buf" +.Fc .Ft int .Fn mdoc_reset "struct mdoc *mdoc" .Sh DESCRIPTION |