diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-15 15:54:39 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-15 15:54:39 +0000 |
commit | b9297c29623c1e4db9a654cff80d1ac016fdbaee (patch) | |
tree | 2f593f482089d568f7cf7614873b114e88046755 /man_term.c | |
parent | ed04d894e573be8a07ec7f68bb5245f83ce49beb (diff) | |
download | mandoc-b9297c29623c1e4db9a654cff80d1ac016fdbaee.tar.gz |
Removed restriction on integer manual sections in -man.
Diffstat (limited to 'man_term.c')
-rw-r--r-- | man_term.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -911,7 +911,7 @@ print_man_head(struct termp *p, const struct man_meta *m) strlcpy(buf, m->vol, BUFSIZ); buflen = strlen(buf); - snprintf(title, BUFSIZ, "%s(%d)", m->title, m->msec); + snprintf(title, BUFSIZ, "%s(%s)", m->title, m->msec); titlen = strlen(title); p->offset = 0; |