diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2002-05-18 14:17:53 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2002-05-18 14:17:53 +0000 |
commit | 93685bb81e1557e02e6dac5e19e0dc83b818a1f9 (patch) | |
tree | 565531137c06779e014269f87fbac3e0ea9f37ff /usr.bin/makewhatis | |
parent | 02484f2b5364a6abad12d4576f969ce217747cdc (diff) |
Notes
Diffstat (limited to 'usr.bin/makewhatis')
-rw-r--r-- | usr.bin/makewhatis/makewhatis.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/makewhatis/makewhatis.c b/usr.bin/makewhatis/makewhatis.c index 4fbdedfc5d97a..509843156de64 100644 --- a/usr.bin/makewhatis/makewhatis.c +++ b/usr.bin/makewhatis/makewhatis.c @@ -598,6 +598,7 @@ process_mdoc_line(char *line) return; if (line[0] != '.' || !isupper(line[1]) || !islower(line[2])) { add_nroff(skip_spaces(line)); + sbuf_append(whatis_proto, " ", 1); return; } xref = strncmp(line, ".Xr", 3) == 0; |