]> git.cameronkatri.com Git - mandoc.git/blobdiff - man_html.c
Remove \s TODO: these are intelligently ignored along with \m and \M.
[mandoc.git] / man_html.c
index abb1d4424dedadf6e130a8c3332a4b1ace775646..0433a8d68e8d36ba4ff6f9e5aa7798ae17dad7c5 100644 (file)
@@ -1,6 +1,6 @@
-/*     $Id: man_html.c,v 1.35 2010/05/17 22:11:42 kristaps Exp $ */
+/*     $Id: man_html.c,v 1.42 2010/07/13 23:53:20 schwarze Exp $ */
 /*
- * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
+ * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -308,7 +308,10 @@ man_root_post(MAN_ARGS)
        struct tag      *t, *tt;
        char             b[DATESIZ];
 
-       time2a(m->date, b, DATESIZ);
+       if (m->rawdate)
+               strlcpy(b, m->rawdate, DATESIZ);
+       else
+               time2a(m->date, b, DATESIZ);
 
        PAIR_CLASS_INIT(&tag[0], "footer");
        bufcat_style(h, "width", "100%");