Summary: | security/openssh-portable: mdoc2man.awk mangles .Qq in man pages | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Craig Leres <leres> | ||||
Component: | Individual Port(s) | Assignee: | Walter Schwarzenfeld <w.schwarzenfeld> | ||||
Status: | Closed Overcome By Events | ||||||
Severity: | Affects Only Me | CC: | w.schwarzenfeld | ||||
Priority: | --- | Keywords: | patch | ||||
Version: | Latest | Flags: | bugzilla:
maintainer-feedback?
(bdrewery) |
||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Description
Craig Leres
![]() Created attachment 203572 [details]
patch
The change is slightly different in the source code: 107 } else if(match(words[w],"^Dq$")) { 108 skip=1 109 add("``") 110 add(words[++w]) 111 while(w<nwords&&!match(words[w+1],"^[\\.,]")) 112 add(OFS words[++w]) 113 add("''") 114 if(!nospace&&match(words[w+1],"^[\\.,]")) 115 nospace=1 116 } else if(match(words[w],"^Sq|Ql$")) { 117 skip=1 118 add("`" words[++w] "'") 119 if(!nospace&&match(words[w+1],"^[\\.,]")) 120 nospace=1 |