Sat Dec 7 12:43:19 2019 UTC ()
Reduce diff to upstream.


(wiz)
diff -r1.2 -r1.3 src/external/bsd/mdocml/dist/mdoc.c

cvs diff -r1.2 -r1.3 src/external/bsd/mdocml/dist/mdoc.c (expand / switch to unified diff)

--- src/external/bsd/mdocml/dist/mdoc.c 2019/03/11 17:59:28 1.2
+++ src/external/bsd/mdocml/dist/mdoc.c 2019/12/07 12:43:19 1.3
@@ -20,29 +20,29 @@ @@ -20,29 +20,29 @@
20#include <sys/types.h> 20#include <sys/types.h>
21 21
22#include <assert.h> 22#include <assert.h>
23#include <ctype.h> 23#include <ctype.h>
24#include <stdarg.h> 24#include <stdarg.h>
25#include <stdio.h> 25#include <stdio.h>
26#include <stdlib.h> 26#include <stdlib.h>
27#include <string.h> 27#include <string.h>
28#include <time.h> 28#include <time.h>
29 29
30#include "mandoc_aux.h" 30#include "mandoc_aux.h"
31#include "mandoc.h" 31#include "mandoc.h"
32#include "roff.h" 32#include "roff.h"
33#include "roff_int.h" 
34#include "mdoc.h" 33#include "mdoc.h"
35#include "libmandoc.h" 34#include "libmandoc.h"
 35#include "roff_int.h"
36#include "libmdoc.h" 36#include "libmdoc.h"
37 37
38const char *const __mdoc_argnames[MDOC_ARG_MAX] = { 38const char *const __mdoc_argnames[MDOC_ARG_MAX] = {
39 "split", "nosplit", "ragged", 39 "split", "nosplit", "ragged",
40 "unfilled", "literal", "file", 40 "unfilled", "literal", "file",
41 "offset", "bullet", "dash", 41 "offset", "bullet", "dash",
42 "hyphen", "item", "enum", 42 "hyphen", "item", "enum",
43 "tag", "diag", "hang", 43 "tag", "diag", "hang",
44 "ohang", "inset", "column", 44 "ohang", "inset", "column",
45 "width", "compact", "std", 45 "width", "compact", "std",
46 "filled", "words", "emphasis", 46 "filled", "words", "emphasis",
47 "symbolic", "nested", "centered" 47 "symbolic", "nested", "centered"
48}; 48};