diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-20 15:14:01 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-20 15:14:01 +0000 |
commit | 00aebf138812dfbbad4079310459c4a98d262466 (patch) | |
tree | 3813b36b1d67ea89983a0d62631f94c74e9c2c65 /ascii.c | |
parent | e594e9b96619e9def1bb676274977cb0d37fdd1b (diff) | |
download | mandoc-00aebf138812dfbbad4079310459c4a98d262466.tar.gz |
Support for `Bd' of all types (see mdoc.7 for newline/tab rules).VERSION.1.6.2
Renamed term.c and terminal.c functions to be term_.
Some bugfixes to lists.
Diffstat (limited to 'ascii.c')
-rw-r--r-- | ascii.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -62,7 +62,7 @@ static inline int match(const struct line *, void -asciifree(void *arg) +term_asciifree(void *arg) { struct asciitab *tab; @@ -75,7 +75,7 @@ asciifree(void *arg) void * -ascii2htab(void) +term_ascii2htab(void) { struct asciitab *tab; void **htab; @@ -132,7 +132,7 @@ ascii2htab(void) const char * -a2ascii(void *arg, const char *p, size_t sz, size_t *rsz) +term_a2ascii(void *arg, const char *p, size_t sz, size_t *rsz) { struct asciitab *tab; struct linep *pp, *prev; |