aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/man_validate.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-01-06 22:39:25 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-01-06 22:39:25 +0000
commitaa902148c80402b742b1e9a00236c3094b044a2b (patch)
tree903f52a5aa3078c4aca3de49974dc9a29c807b78 /man_validate.c
parent5856944693ea231656e42d7ac30d26149f53a66a (diff)
downloadmandoc-aa902148c80402b742b1e9a00236c3094b044a2b.tar.gz
mandoc-aa902148c80402b742b1e9a00236c3094b044a2b.tar.zst
mandoc-aa902148c80402b742b1e9a00236c3094b044a2b.zip
Another 18% speedup for mandocdb(8) -Q, found by gprof(1).
In -Q mode, refrain form validating and normalizing the format of the date given in .Dd or .TH, as it won't be used anyway. For /usr/share/man, mandocdb -Q now takes 45% of the time of makewhatis(8).
Diffstat (limited to 'man_validate.c')
-rw-r--r--man_validate.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/man_validate.c b/man_validate.c
index 479a05f1..ded50ba4 100644
--- a/man_validate.c
+++ b/man_validate.c
@@ -1,7 +1,7 @@
-/* $Id: man_validate.c,v 1.87 2013/12/31 18:07:42 schwarze Exp $ */
+/* $Id: man_validate.c,v 1.88 2014/01/06 22:39:25 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
- * Copyright (c) 2010, 2012, 2013 Ingo Schwarze <schwarze@openbsd.org>
+ * Copyright (c) 2010, 2012, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@@ -211,8 +211,8 @@ check_root(CHKARGS)
man->meta.title = mandoc_strdup("unknown");
man->meta.msec = mandoc_strdup("1");
- man->meta.date = mandoc_normdate
- (man->parse, NULL, n->line, n->pos);
+ man->meta.date = man->quick ? mandoc_strdup("") :
+ mandoc_normdate(man->parse, NULL, n->line, n->pos);
}
return(1);
@@ -435,8 +435,10 @@ post_TH(CHKARGS)
if (n)
n = n->next;
if (n && n->string && '\0' != n->string[0]) {
- man->meta.date = mandoc_normdate
- (man->parse, n->string, n->line, n->pos);
+ man->meta.date = man->quick ?
+ mandoc_strdup(n->string) :
+ mandoc_normdate(man->parse, n->string,
+ n->line, n->pos);
} else
man->meta.date = mandoc_strdup("");