-# Protect from gettextized quotes. See quotearg.c's gettext_quote for
-# the UTF-8 sequences. For context, see
-# http://lists.gnu.org/archive/html/bug-bison/2012-01/msg00120.html
-#
-# In UTF-8 the quoting quote are not ', so bison use them to quote the
-# ' character. When using ASCII quotes, bison issues "'".
-$PERL -p \
- -e "s{\\xe2\\x80\\x98|\\xe2\\x80\\x99|\\xa1\\ae|\\xa1\\xaf}{'}g;" \
- -e "s{'''}{\"'\"}g;" \
- /tmp/bison.$$.err >&2