diff options
author | Brent Cook <busterb@gmail.com> | 2015-11-22 06:37:13 -0600 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2015-11-22 06:37:13 -0600 |
commit | 9c5105eeb18ad0be0d04769f6622fed023df58af (patch) | |
tree | 10c7fccc18054a7b84fca08af4ee0668b177a92e /man | |
parent | fbe05ec826f1af2d5778be1c6fe77a35952e7421 (diff) | |
download | portable-9c5105eeb18ad0be0d04769f6622fed023df58af.tar.gz portable-9c5105eeb18ad0be0d04769f6622fed023df58af.tar.bz2 portable-9c5105eeb18ad0be0d04769f6622fed023df58af.zip |
omit <type> links
Diffstat (limited to 'man')
-rw-r--r-- | man/links | 8 | ||||
-rwxr-xr-x | man/update_links.sh | 2 |
2 files changed, 1 insertions, 9 deletions
@@ -1141,14 +1141,6 @@ lh_new.3,LHASH_COMP_FN_TYPE.3 | |||
1141 | lh_new.3,LHASH_DOALL_ARG_FN_TYPE.3 | 1141 | lh_new.3,LHASH_DOALL_ARG_FN_TYPE.3 |
1142 | lh_new.3,LHASH_DOALL_FN_TYPE.3 | 1142 | lh_new.3,LHASH_DOALL_FN_TYPE.3 |
1143 | lh_new.3,LHASH_HASH_FN_TYPE.3 | 1143 | lh_new.3,LHASH_HASH_FN_TYPE.3 |
1144 | lh_new.3,lh_<type>_delete.3 | ||
1145 | lh_new.3,lh_<type>_doall.3 | ||
1146 | lh_new.3,lh_<type>_doall_arg.3 | ||
1147 | lh_new.3,lh_<type>_error.3 | ||
1148 | lh_new.3,lh_<type>_free.3 | ||
1149 | lh_new.3,lh_<type>_insert.3 | ||
1150 | lh_new.3,lh_<type>_new.3 | ||
1151 | lh_new.3,lh_<type>_retrieve.3 | ||
1152 | lh_new.3,lh_delete.3 | 1144 | lh_new.3,lh_delete.3 |
1153 | lh_new.3,lh_doall.3 | 1145 | lh_new.3,lh_doall.3 |
1154 | lh_new.3,lh_doall_arg.3 | 1146 | lh_new.3,lh_doall_arg.3 |
diff --git a/man/update_links.sh b/man/update_links.sh index b191cc6..3bccd0c 100755 --- a/man/update_links.sh +++ b/man/update_links.sh | |||
@@ -11,7 +11,7 @@ for i in `ls -1 *.3`; do | |||
11 | for j in $links; do | 11 | for j in $links; do |
12 | a=`echo "x$j" | tr '[:upper:]' '[:lower:]'` | 12 | a=`echo "x$j" | tr '[:upper:]' '[:lower:]'` |
13 | b=`echo "x$name" | tr '[:upper:]' '[:lower:]'` | 13 | b=`echo "x$name" | tr '[:upper:]' '[:lower:]'` |
14 | if [ $a != $b ]; then | 14 | if [[ $a != $b && $a != *"<type>"* ]]; then |
15 | echo $name.3,$j.3 >> links | 15 | echo $name.3,$j.3 >> links |
16 | fi | 16 | fi |
17 | done | 17 | done |