in reply to My Solution: Tk Entry & Right Single Quote
in thread Tk Entry & Right Single Quote

Folks-

One other thing...

If you are trying to create a perl executable of the above script using par (with either pp or pp_autolink, the following will not work:

pp_autolink -v -o squote.exe squote.pl

This is because the translation tables are not being found and included. To fix this issue, use the following command:

pp_autolink -v -M Text::Unidecode:: -o squote.exe squote.pl

The trailing :: tells par to include both the file Text::Unidecode.pl and the directory Text::Unidecode which contains all of the necessary translation tables.

I wanted to document this here as well, so when I forget later on - I'll have a chance of catching it again.

-Craig