diff options
author | Joerg Sonnenberger <joerg@netbsd.org> | 2014-01-05 18:37:53 +0000 |
---|---|---|
committer | Joerg Sonnenberger <joerg@netbsd.org> | 2014-01-05 18:37:53 +0000 |
commit | bfc2a1a7b08ccfe41610d07abb12b2eca5139716 (patch) | |
tree | c29a0e2e1e9fdcf7b1c3446820c22fef20e987b0 /tbl_data.c | |
parent | 8aa6a92dfbd1d0b59c2e5a5910a10e58ec8c8eee (diff) | |
download | mandoc-bfc2a1a7b08ccfe41610d07abb12b2eca5139716.tar.gz |
Merge NetBSD's r1.4: Rename data to getdata to work around bugs in the
PPC64 toolchain.
Diffstat (limited to 'tbl_data.c')
-rw-r--r-- | tbl_data.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -29,13 +29,13 @@ #include "libmandoc.h" #include "libroff.h" -static int data(struct tbl_node *, struct tbl_span *, +static int getdata(struct tbl_node *, struct tbl_span *, int, const char *, int *); static struct tbl_span *newspan(struct tbl_node *, int, struct tbl_row *); static int -data(struct tbl_node *tbl, struct tbl_span *dp, +getdata(struct tbl_node *tbl, struct tbl_span *dp, int ln, const char *p, int *pos) { struct tbl_dat *dat; @@ -152,7 +152,7 @@ tbl_cdata(struct tbl_node *tbl, int ln, const char *p) if (p[pos] == tbl->opts.tab) { tbl->part = TBL_PART_DATA; pos++; - return(data(tbl, tbl->last_span, ln, p, &pos)); + return(getdata(tbl, tbl->last_span, ln, p, &pos)); } else if ('\0' == p[pos]) { tbl->part = TBL_PART_DATA; return(1); @@ -267,7 +267,7 @@ tbl_data(struct tbl_node *tbl, int ln, const char *p) /* This returns 0 when TBL_PART_CDATA is entered. */ while ('\0' != p[pos]) - if ( ! data(tbl, dp, ln, p, &pos)) + if ( ! getdata(tbl, dp, ln, p, &pos)) return(0); return(1); |