diff options
author | 2009-07-19 12:26:57 +0000 | |
---|---|---|
committer | 2009-07-19 12:26:57 +0000 | |
commit | 597492bcad76736ac68ffea90c4799793a259f0f (patch) | |
tree | c189e5cd841fcbb6c164466eb5434628803b3b3a /usr.bin/mandoc/mdoc_validate.c | |
parent | Include 0x4402 in the bbp id mapping table used on older (diff) | |
download | wireguard-openbsd-597492bcad76736ac68ffea90c4799793a259f0f.tar.xz wireguard-openbsd-597492bcad76736ac68ffea90c4799793a259f0f.zip |
The abbreviation for .Bf -symbolic is .Bf Sy, not .Bf Sm;
"Gah! Fixed." kristaps@
Diffstat (limited to 'usr.bin/mandoc/mdoc_validate.c')
-rw-r--r-- | usr.bin/mandoc/mdoc_validate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/mdoc_validate.c b/usr.bin/mandoc/mdoc_validate.c index d68aebab5d2..a1ef3cb8687 100644 --- a/usr.bin/mandoc/mdoc_validate.c +++ b/usr.bin/mandoc/mdoc_validate.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_validate.c,v 1.29 2009/07/18 20:19:50 schwarze Exp $ */ +/* $Id: mdoc_validate.c,v 1.30 2009/07/19 12:26:57 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -855,7 +855,7 @@ post_bf(POST_ARGS) return(1); else if (0 == strcmp(p, "Li")) return(1); - else if (0 == strcmp(p, "Sm")) + else if (0 == strcmp(p, "Sy")) return(1); return(mdoc_nerr(mdoc, head, EFONT)); |