]> git.cameronkatri.com Git - mandoc.git/blobdiff - man_html.c
Remove `am', `ami', `de', `dei', and `.' from -man, as they're now in the roff prepro...
[mandoc.git] / man_html.c
index a759bd9df9216a59efbede73d0475921c3f9120f..3a6be4a98f26f8ecd7cd3d1d187b9b8daaa2ddf7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: man_html.c,v 1.29 2010/03/23 11:30:48 kristaps Exp $ */
+/*     $Id: man_html.c,v 1.33 2010/05/15 22:44:04 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -105,7 +105,7 @@ static      const struct htmlman mans[MAN_MAX] = {
        { man_ign_pre, NULL }, /* PD */
        { man_br_pre, NULL }, /* Sp */
        { man_ign_pre, NULL }, /* Vb */
-       { NULL, NULL }, /* Vi */
+       { NULL, NULL }, /* Ve */
 };
 
 
@@ -156,7 +156,7 @@ print_man_head(MAN_ARGS)
 
        print_gen_head(h);
        bufinit(h);
-       buffmt(h, "%s(%d)", m->title, m->msec);
+       buffmt(h, "%s(%s)", m->title, m->msec);
 
        print_otag(h, TAG_TITLE, 0, NULL);
        print_text(h, h->buf);
@@ -261,7 +261,7 @@ man_root_pre(MAN_ARGS)
        if (m->vol)
                (void)strlcat(b, m->vol, BUFSIZ);
 
-       snprintf(title, BUFSIZ - 1, "%s(%d)", m->title, m->msec);
+       snprintf(title, BUFSIZ - 1, "%s(%s)", m->title, m->msec);
 
        PAIR_CLASS_INIT(&tag[0], "header");
        bufcat_style(h, "width", "100%");