- (dtucker) [mdoc2man.awk] Teach it to understand the .Ux macro.

This commit is contained in:
Darren Tucker 2009-10-24 11:52:42 +11:00
parent 199ee6ff07
commit 6ac91a7c83
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -1,6 +1,6 @@
#!/usr/bin/awk
#
# $Id: mdoc2man.awk,v 1.8 2007/06/05 10:01:16 dtucker Exp $
# $Id: mdoc2man.awk,v 1.9 2009/10/24 00:52:42 dtucker Exp $
#
# Version history:
# v4+ Adapted for OpenSSH Portable (see cvs Id and history)
@ -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