diff options
author | wosch <wosch@FreeBSD.org> | 1997-03-14 21:58:43 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1997-03-14 21:58:43 +0000 |
commit | c0e6c9a0afae42bd7cc77850be56df120c89fb0b (patch) | |
tree | 31bc5849cd9ea1129dc3a3d7c57bb4731a2d18a3 /gnu/usr.bin/man/makewhatis | |
parent | f3f330612677367dcbd673e19574d26257cefd9c (diff) | |
download | FreeBSD-src-c0e6c9a0afae42bd7cc77850be56df120c89fb0b.zip FreeBSD-src-c0e6c9a0afae42bd7cc77850be56df120c89fb0b.tar.gz |
Support german mdoc man pages (currently no german mdoc man page exists).
Support japanese FreeBSD man pages, Jpman Project.
Diffstat (limited to 'gnu/usr.bin/man/makewhatis')
-rw-r--r-- | gnu/usr.bin/man/makewhatis/makewhatis.perl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/man/makewhatis/makewhatis.perl b/gnu/usr.bin/man/makewhatis/makewhatis.perl index f5b0552..453787e 100644 --- a/gnu/usr.bin/man/makewhatis/makewhatis.perl +++ b/gnu/usr.bin/man/makewhatis/makewhatis.perl @@ -26,7 +26,7 @@ # # makewhatis -- update the whatis database in the man directories. # -# $Id: makewhatis.perl,v 1.14 1997/03/01 15:20:50 wosch Exp $ +# $Id: makewhatis.perl,v 1.11 1996/08/27 20:04:09 wosch Exp $ sub usage { @@ -337,7 +337,7 @@ sub manual { while(<F>) { # ``man'' style pages # &&: it takes you only half the user time, regexp is slow!!! - if (/^\.SH/ && /^\.SH[ \t]+["]?(NAME|Name|NAMN|BEZEICHNUNG)["]?/) { + if (/^\.SH/ && /^\.SH[ \t]+["]?(NAME|Name|NAMN|BEZEICHNUNG|̾¾Î)["]?/) { #while(<F>) { last unless /^\./ } # Skip #chop; $list = $_; while(<F>) { @@ -354,7 +354,7 @@ sub manual { } } &out($list); close F; return 1; - } elsif (/^\.Sh/ && /^\.Sh[ \t]+["]?(NAME|Name)["]?/) { + } elsif (/^\.Sh/ && /^\.Sh[ \t]+["]?(NAME|Name|BEZEICHNUNG|̾¾Î)["]?/) { # ``doc'' style pages local($flag) = 0; while(<F>) { |