summaryrefslogtreecommitdiffstats
path: root/unix/installManPage
diff options
context:
space:
mode:
Diffstat (limited to 'unix/installManPage')
-rwxr-xr-xunix/installManPage7
1 files changed, 3 insertions, 4 deletions
diff --git a/unix/installManPage b/unix/installManPage
index 1f1cbde..1dbd232 100755
--- a/unix/installManPage
+++ b/unix/installManPage
@@ -59,7 +59,9 @@ test -z "$SymOrLoc" && SymOrLoc="$Dir/"
# backticks which doesn't pass backslashes literally.
#
Names=`sed -n '
-# Look for a line that starts with .SH NAME
+# Look for a line, that starts with .SH NAME
+# optionally allow NAME to be surrounded
+# by quotes.
/^\.SH NAME/{
# Read next line
n
@@ -69,9 +71,6 @@ Names=`sed -n '
s/\\\ //g
# Delete from \- to the end of line
s/ \\\-.*//
-# Convert all non-space non-alphanum sequences
-# to single underscores.
- s/[^ A-Za-z0-9][^ A-Za-z0-9]*/_/g
# print the result and exit
p;q
}' $ManPage`