aboutsummaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2015-11-22 06:37:13 -0600
committerBrent Cook <busterb@gmail.com>2015-11-22 06:37:13 -0600
commit9c5105eeb18ad0be0d04769f6622fed023df58af (patch)
tree10c7fccc18054a7b84fca08af4ee0668b177a92e /man
parentfbe05ec826f1af2d5778be1c6fe77a35952e7421 (diff)
downloadportable-9c5105eeb18ad0be0d04769f6622fed023df58af.tar.gz
portable-9c5105eeb18ad0be0d04769f6622fed023df58af.tar.bz2
portable-9c5105eeb18ad0be0d04769f6622fed023df58af.zip
omit <type> links
Diffstat (limited to 'man')
-rw-r--r--man/links8
-rwxr-xr-xman/update_links.sh2
2 files changed, 1 insertions, 9 deletions
diff --git a/man/links b/man/links
index 280d960..9e0f7a9 100644
--- a/man/links
+++ b/man/links
@@ -1141,14 +1141,6 @@ lh_new.3,LHASH_COMP_FN_TYPE.3
1141lh_new.3,LHASH_DOALL_ARG_FN_TYPE.3 1141lh_new.3,LHASH_DOALL_ARG_FN_TYPE.3
1142lh_new.3,LHASH_DOALL_FN_TYPE.3 1142lh_new.3,LHASH_DOALL_FN_TYPE.3
1143lh_new.3,LHASH_HASH_FN_TYPE.3 1143lh_new.3,LHASH_HASH_FN_TYPE.3
1144lh_new.3,lh_<type>_delete.3
1145lh_new.3,lh_<type>_doall.3
1146lh_new.3,lh_<type>_doall_arg.3
1147lh_new.3,lh_<type>_error.3
1148lh_new.3,lh_<type>_free.3
1149lh_new.3,lh_<type>_insert.3
1150lh_new.3,lh_<type>_new.3
1151lh_new.3,lh_<type>_retrieve.3
1152lh_new.3,lh_delete.3 1144lh_new.3,lh_delete.3
1153lh_new.3,lh_doall.3 1145lh_new.3,lh_doall.3
1154lh_new.3,lh_doall_arg.3 1146lh_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