fix: when two names only differed in case, crossrefs only included one of them.
thanks to greg price.
This commit is contained in:
parent
2ce40d7088
commit
6186836d28
1 changed files with 1 additions and 1 deletions
2
runoff
2
runoff
|
@ -157,7 +157,7 @@ perl -n -e 'print if s/^([0-9]+ [a-zA-Z0-9_]+)\(.*$/\1/;' alltext |
|
|||
>s.defs
|
||||
|
||||
# make reference list
|
||||
for i in `awk '{print $2}' defs | sort -fu`
|
||||
for i in `awk '{print $2}' defs | sort -f | uniq`
|
||||
do
|
||||
defs=`egrep '^[0-9]+ '$i'( |$)' defs | awk '{print $1}'`
|
||||
echo $i $defs >>s.defs
|
||||
|
|
Loading…
Reference in a new issue