[openssl-commits] [web] master update
Richard Levitte
levitte at openssl.org
Thu Oct 19 15:31:18 UTC 2017
The branch master has been updated
via 156c3ff634ccade97cc703bd7c03ac6ced3c2360 (commit)
from f702c7e905b76f483e0baba75ace35f41ab05d37 (commit)
- Log -----------------------------------------------------------------
commit 156c3ff634ccade97cc703bd7c03ac6ced3c2360
Author: Richard Levitte <levitte at openssl.org>
Date: Thu Oct 19 17:31:07 2017 +0200
Allow dashes and periods in manpage names
-----------------------------------------------------------------------
Summary of changes:
bin/mk-faq | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/mk-faq b/bin/mk-faq
index 001518b..531a6c6 100755
--- a/bin/mk-faq
+++ b/bin/mk-faq
@@ -70,7 +70,7 @@ foreach my $f ( @ARGV ) {
} elsif ( /(.*)@@@(.*)@@@(.*)/ ) {
# URL: @@@http:....@@@
print "$1<a href='$2'>$2</a>$3\n";
- } elsif ( /(\w+)\((\d)\)/ ) {
+ } elsif ( /([-\.\w]+)\((\d)\)/ ) {
# Manpage "foo(1)"
my ($page, $sec) = ($1, $2);
my $link = "/docs/manmaster/man$sec/$page.html";
More information about the openssl-commits
mailing list