#! /usr/bin/gawk -f

BEGIN {
  if (erase_ligatures)     printf "  erase all ligatures\n";
  if (erase_plumes)        printf "  erase the plumes in `s', `r', `sh'\n";
  if (equate_pt)           printf "  map `p' to `t' and `f' to `k'\n";
  if (ignore_gallows_eyes) printf "  map `k' to `t' and `f' to `p'\n";
  if (join_ei)             printf "  replace `ei' by `a'\n";
  if (equate_aoy)          printf "  map `a' and `y' to `o'\n";
  if (collapse_ii)         printf "  collapse multiple `i's to a single `i'\n";
  if (equate_eights)       printf "  map `m', `j', and `g' to `d'\n";
  if (erase_q)             printf "  delete the word-initial `q'\n";
  if (erase_word_spaces)   printf "  delete any embedded spaces\n";
  exit 0
}