diff options
author | wosch <wosch@FreeBSD.org> | 1997-03-13 17:56:01 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1997-03-13 17:56:01 +0000 |
commit | 463d2ef96180885e06f68ae2ebb934f92011686c (patch) | |
tree | 3d8fc8123454a14596613de6eedec5279f5abfdd /gnu/usr.bin/man | |
parent | 55186ebb5ba0db7ae84df73b5be4fa0cb71e1acd (diff) | |
download | FreeBSD-src-463d2ef96180885e06f68ae2ebb934f92011686c.zip FreeBSD-src-463d2ef96180885e06f68ae2ebb934f92011686c.tar.gz |
Support german Linux/GNU man pages.
Diffstat (limited to 'gnu/usr.bin/man')
-rw-r--r-- | gnu/usr.bin/man/makewhatis/makewhatis.perl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/man/makewhatis/makewhatis.perl b/gnu/usr.bin/man/makewhatis/makewhatis.perl index a3e4489..f5b0552 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.13 1997/02/22 15:47:03 peter Exp $ +# $Id: makewhatis.perl,v 1.14 1997/03/01 15:20:50 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)["]?/) { + if (/^\.SH/ && /^\.SH[ \t]+["]?(NAME|Name|NAMN|BEZEICHNUNG)["]?/) { #while(<F>) { last unless /^\./ } # Skip #chop; $list = $_; while(<F>) { |