]> andersk Git - openssh.git/commitdiff
- (dtucker) [mdoc2man.awk] Teach it to understand the .Ux macro.
authordtucker <dtucker>
Sat, 24 Oct 2009 00:52:42 +0000 (00:52 +0000)
committerdtucker <dtucker>
Sat, 24 Oct 2009 00:52:42 +0000 (00:52 +0000)
ChangeLog
mdoc2man.awk

index 449aeed3167444930a31306646343d9de2ff865e..1b06168aeac5257364fdb90b3b32678bf5240627 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -27,6 +27,7 @@
    - dtucker@cvs.openbsd.org 2009/10/24 00:48:34
      [ssh-keygen.1]
      ssh-keygen now uses AES-128 for private keys
+ - (dtucker) [mdoc2man.awk] Teach it to understand the .Ux macro.
 
 20091011
  - (dtucker) [configure.ac sftp-client.c] Remove the gyrations required for
index 7ad1457873eb4e1c0e4662a1110ae5054865259c..bf03e7360a7a14afe1faa501eff05c59ff2f3070 100644 (file)
@@ -149,6 +149,9 @@ function add(str) {
     } else if(match(words[w],"^Dt$")) {
       id=wtail()
       next
+    } else if(match(words[w],"^Ux$")) {
+      add("UNIX")
+      skip=1
     } else if(match(words[w],"^Ox$")) {
       add("OpenBSD")
       skip=1
This page took 0.055761 seconds and 5 git commands to generate.