diff options
author | donal.k.fellows@manchester.ac.uk <dkf> | 2007-11-01 10:59:40 (GMT) |
---|---|---|
committer | donal.k.fellows@manchester.ac.uk <dkf> | 2007-11-01 10:59:40 (GMT) |
commit | cbf2422b537b141165608ea53fb026ecc858fa82 (patch) | |
tree | a9fdb782fb5a267cd0d5385c6d95aae6bd26fe13 /unix/installManPage | |
parent | f6233281ced55f57db79c420459c95eb344af351 (diff) | |
download | tk-cbf2422b537b141165608ea53fb026ecc858fa82.zip tk-cbf2422b537b141165608ea53fb026ecc858fa82.tar.gz tk-cbf2422b537b141165608ea53fb026ecc858fa82.tar.bz2 |
Make documentation use the name that scripts use as much as possible.
[Bug 1640073]
Diffstat (limited to 'unix/installManPage')
-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 |