Ditto.
  
  An intermezzo: prompted by John Grove, let's compute the frquency of 
  single-letter words in the manuscript
 
    cat .voyn.fsg \
      | /n/gnu/bin/tr ' =./' '\012\012\012\012' \
      | egrep '^.$' \
      | sort | uniq -c | expand \
      | compute-freqs \
      | sort +0 -1nr \
      > .single.frq

       13 0.245 R
        9 0.170 2
        7 0.132 E
        5 0.094 G
        5 0.094 O
        4 0.075 4
        3 0.057 8
        2 0.038 *
        2 0.038 D
        2 0.038 S
        1 0.019 6

  Now for something else again.