]> git.cameronkatri.com Git - mandoc.git/blobdiff - demandoc.c
Tedu support for the -xsh4.2 argument to the mdoc(7) .St macro
[mandoc.git] / demandoc.c
index f55109cdc0e86665f8b437ef86fe7b02d34e9d4f..57d0cc5f4120dee213091c638803161c87948ea2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: demandoc.c,v 1.25 2016/01/08 02:13:39 schwarze Exp $ */
+/*     $Id: demandoc.c,v 1.33 2019/03/03 11:01:15 schwarze Exp $ */
 /*
  * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  *
 /*
  * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  *
 
 #include <assert.h>
 #include <ctype.h>
 
 #include <assert.h>
 #include <ctype.h>
-#include <getopt.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
 
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
 
+#include "mandoc.h"
 #include "roff.h"
 #include "man.h"
 #include "mdoc.h"
 #include "roff.h"
 #include "man.h"
 #include "mdoc.h"
-#include "mandoc.h"
+#include "mandoc_parse.h"
 
 static void     pline(int, int *, int *, int);
 static void     pman(const struct roff_node *, int *, int *, int);
 
 static void     pline(int, int *, int *, int);
 static void     pman(const struct roff_node *, int *, int *, int);
@@ -79,7 +79,8 @@ main(int argc, char *argv[])
        argv += optind;
 
        mchars_alloc();
        argv += optind;
 
        mchars_alloc();
-       mp = mparse_alloc(MPARSE_SO, MANDOCLEVEL_BADARG, NULL, NULL);
+       mp = mparse_alloc(MPARSE_SO | MPARSE_UTF8 | MPARSE_LATIN1 |
+           MPARSE_VALIDATE, MANDOC_OS_OTHER, NULL);
        assert(mp);
 
        if (argc < 1)
        assert(mp);
 
        if (argc < 1)
@@ -87,7 +88,7 @@ main(int argc, char *argv[])
 
        for (i = 0; i < argc; i++) {
                mparse_reset(mp);
 
        for (i = 0; i < argc; i++) {
                mparse_reset(mp);
-               if (mparse_open(mp, &fd, argv[i]) != MANDOCLEVEL_OK) {
+               if ((fd = mparse_open(mp, argv[i])) == -1) {
                        perror(argv[i]);
                        continue;
                }
                        perror(argv[i]);
                        continue;
                }
@@ -109,24 +110,19 @@ usage(void)
 static void
 pmandoc(struct mparse *mp, int fd, const char *fn, int list)
 {
 static void
 pmandoc(struct mparse *mp, int fd, const char *fn, int list)
 {
-       struct roff_man *man;
+       struct roff_meta        *meta;
        int              line, col;
 
        mparse_readfd(mp, fd, fn);
        close(fd);
        int              line, col;
 
        mparse_readfd(mp, fd, fn);
        close(fd);
-       mparse_result(mp, &man, NULL);
+       meta = mparse_result(mp);
        line = 1;
        col = 0;
 
        line = 1;
        col = 0;
 
-       if (man == NULL)
-               return;
-       if (man->macroset == MACROSET_MDOC) {
-               mdoc_validate(man);
-               pmdoc(man->first->child, &line, &col, list);
-       } else {
-               man_validate(man);
-               pman(man->first->child, &line, &col, list);
-       }
+       if (meta->macroset == MACROSET_MDOC)
+               pmdoc(meta->first->child, &line, &col, list);
+       else
+               pman(meta->first->child, &line, &col, list);
 
        if ( ! list)
                putchar('\n');
 
        if ( ! list)
                putchar('\n');
@@ -240,7 +236,7 @@ pmdoc(const struct roff_node *p, int *line, int *col, int list)
 {
 
        for ( ; p; p = p->next) {
 {
 
        for ( ; p; p = p->next) {
-               if (MDOC_LINE & p->flags)
+               if (NODE_LINE & p->flags)
                        pline(p->line, line, col, list);
                if (ROFFT_TEXT == p->type)
                        pstring(p->string, p->pos, col, list);
                        pline(p->line, line, col, list);
                if (ROFFT_TEXT == p->type)
                        pstring(p->string, p->pos, col, list);
@@ -254,7 +250,7 @@ pman(const struct roff_node *p, int *line, int *col, int list)
 {
 
        for ( ; p; p = p->next) {
 {
 
        for ( ; p; p = p->next) {
-               if (MAN_LINE & p->flags)
+               if (NODE_LINE & p->flags)
                        pline(p->line, line, col, list);
                if (ROFFT_TEXT == p->type)
                        pstring(p->string, p->pos, col, list);
                        pline(p->line, line, col, list);
                if (ROFFT_TEXT == p->type)
                        pstring(p->string, p->pos, col, list);