diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2007-11-01 10:59:40 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2007-11-01 10:59:40 (GMT) |
commit | 83f6db972b3cbb518343cf41b23e9bf959339e8b (patch) | |
tree | a9fdb782fb5a267cd0d5385c6d95aae6bd26fe13 /unix | |
parent | 3ab66bf90c3de1b2ffe2c7eef83f56e189c02337 (diff) | |
download | tk-83f6db972b3cbb518343cf41b23e9bf959339e8b.zip tk-83f6db972b3cbb518343cf41b23e9bf959339e8b.tar.gz tk-83f6db972b3cbb518343cf41b23e9bf959339e8b.tar.bz2 |
Make documentation use the name that scripts use as much as possible.
[Bug 1640073]
Diffstat (limited to 'unix')
-rwxr-xr-x | unix/installManPage | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/unix/installManPage b/unix/installManPage index 93fd925..98cd899 100755 --- a/unix/installManPage +++ b/unix/installManPage @@ -27,6 +27,7 @@ test -z "$S" && S="$DIR/" # n ;# Read next line # s/,//g ;# Remove all commas ... # s/\\\ //g ;# .. and backslash-escaped spaces. +# s/::/_/g ;# Convert '::' to '_' # s/ \\\-.*// ;# Delete from \- to the end of line # p ;# print the result # q ;# exit @@ -43,6 +44,7 @@ NAMES=`sed -n ' n s/,//g s/\\\ //g + s/::/_/g s/ \\\-.*// p q |