- (dtucker) [mdoc2man.awk] Teach it to ignore .Bk -words, reported by

strube at physik3.gwdg.de a long time ago.
This commit is contained in:
Darren Tucker 2004-07-02 18:43:09 +10:00
parent a5757f0f28
commit d062da53c7
2 changed files with 13 additions and 1 deletions

View File

@ -1,3 +1,7 @@
20040702
- (dtucker) [mdoc2man.awk] Teach it to ignore .Bk -words, reported by
strube at physik3.gwdg.de a long time ago.
20040701
- (dtucker) [session.c] Call display_loginmsg again after do_pam_session.
Ensures messages from PAM modules are displayed when privsep=no.
@ -1477,4 +1481,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.3467 2004/07/02 03:41:15 tim Exp $
$Id: ChangeLog,v 1.3468 2004/07/02 08:43:09 dtucker Exp $

View File

@ -32,6 +32,7 @@ BEGIN {
extopt=0
literal=0
prenl=0
breakw=0
line=""
}
@ -298,6 +299,13 @@ function add(str) {
w=nwords
} else if(match(words[w],"^El$")) {
optlist=oldoptlist
} else if(match(words[w],"^Bk$")) {
if(match(words[w+1],"-words")) {
w++
breakw=1
}
} else if(match(words[w],"^Ek$")) {
breakw=0
} else if(match(words[w],"^It$")&&optlist) {
if(optlist==1)
add(".IP \\(bu")