3a4bc20e2ef938b1b9d21b1748fac79c61f3f8dd
kuhn
  Tue Mar 19 15:01:43 2013 -0700
added Fan Hsu to list of names to combine (with fanhsu) so only listed once as total
diff --git src/utils/qa/whoMadeIt.csh src/utils/qa/whoMadeIt.csh
index f0eaedc..c0cc755 100755
--- src/utils/qa/whoMadeIt.csh
+++ src/utils/qa/whoMadeIt.csh
@@ -8,42 +8,42 @@
 #
 #  gets info about who wrote the lines in a program
 #
 ################################
 
 onintr cleanup
 
 set program=""
 set location=""
 set size=""
 
 # set up equivalence to remove split contributions under two names
 set names=( 'Ann Zweig' 'Brian Raney' 'Brooke Rhead' 'Jim Kent' 'Andy Pohl'\
   'Larry Meyer' 'Mark Diekhans' 'Kate Rosenbloom' 'Hiram Clawson' 'Tim Dreszer' \
   'Galt Barber' 'Belinda Giardine' 'Angie Hinrichs' 'Robert Baertsch' \
-  'Donna Karolchik' )
+  'Donna Karolchik' 'Fan Hsu')
 set alias=( ann braney rhead kent aamp \
   larrym markd kate hiram tdreszer  \
   galt giardine angie baertsch \
-  donnak )
+  donnak fanhsu)
 # set names=( 'Jim Kent' )
 # set alias=( kent )
 set aliases=`echo $alias | wc -w`
 
 if ( $#argv != 1 ) then
   echo
-  echo "  gets info about who wrote the lines in a program."
+  echo "  gets info about who wrote how many lines in a program."
   echo "  expects your source tree in your ~/kent directory."
   echo "  will work on a directory name."
   echo "  writes some files in your kent directory, then removes them."
   echo
   echo "    usage:  `basename $0` program"
   echo
   exit
 else
   set program=$argv[1]
 endif
 
 if ( "$HOST" != "hgwdev" ) then
  echo "\n error: you must run this script on dev!\n"
  exit 1
 endif