#
# This file is licensed under the MIT No Attribution license.
#

. /prelude.bash.tmp

main() {

  declare    x

  for x in ./**/*.@(texi|texinfo|txi); do

    sed -i '

      /^@titlepage/,$ {
        /^@ifinfo$/ d
        /^@end ifinfo$/ d
      }

      s/@refill//g

    ' "$x"

    perl -0 -i -p -e '

      s/^\n\@itemx/@itemx/gm;

    ' "$x"

  done

}; readonly -f main

main "$@"
