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 lh_new.3,LHASH_DOALL_ARG_FN_TYPE.3 lh_new.3,LHASH_DOALL_FN_TYPE.3 lh_new.3,LHASH_HASH_FN_TYPE.3 -lh_new.3,lh__delete.3 -lh_new.3,lh__doall.3 -lh_new.3,lh__doall_arg.3 -lh_new.3,lh__error.3 -lh_new.3,lh__free.3 -lh_new.3,lh__insert.3 -lh_new.3,lh__new.3 -lh_new.3,lh__retrieve.3 lh_new.3,lh_delete.3 lh_new.3,lh_doall.3 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 for j in $links; do a=`echo "x$j" | tr '[:upper:]' '[:lower:]'` b=`echo "x$name" | tr '[:upper:]' '[:lower:]'` - if [ $a != $b ]; then + if [[ $a != $b && $a != *""* ]]; then echo $name.3,$j.3 >> links fi done