From 7898ccdd63cd83c5f2d2b0af89ed404c08198b52 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 8 Jul 2003 15:57:52 +0000 Subject: [PATCH] Improve compatibility with more versions of LaTeX2HTML and more LaTeX markup. Not currently needed, but easier to save this now than to have to figure it out when we do. --- Doc/perl/python.perl | 1 + 1 file changed, 1 insertion(+) diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 1459076a16..a0b4551e6d 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -89,6 +89,7 @@ sub do_cmd_let{ sub do_cmd_textasciitilde{ '~' . $_[0]; } sub do_cmd_textasciicircum{ '^' . $_[0]; } sub do_cmd_textbar{ '|' . $_[0]; } +sub do_cmd_texteuro { '€' . $_[0]); } sub do_cmd_textgreater{ '>' . $_[0]; } sub do_cmd_textless{ '<' . $_[0]; } sub do_cmd_textunderscore{ '_' . $_[0]; } -- 2.50.1