Skip to content
Snippets Groups Projects
Commit 6186836d authored by kolya's avatar kolya
Browse files

fix: when two names only differed in case, crossrefs only included one of them.

thanks to greg price.
parent 2ce40d70
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment