From: Fred Drake Date: Thu, 27 Apr 2000 21:27:49 +0000 (+0000) Subject: Support for the special macros used by the distutils documentation. X-Git-Tag: v2.0b1~1917 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=638ae9d0bbc1f1f4132e2f71f52a9db4ebe42779;p=thirdparty%2FPython%2Fcpython.git Support for the special macros used by the distutils documentation. --- diff --git a/Doc/perl/distutils.perl b/Doc/perl/distutils.perl new file mode 100644 index 000000000000..ab524bbd79b6 --- /dev/null +++ b/Doc/perl/distutils.perl @@ -0,0 +1,21 @@ +# LaTeX2HTML support for distutils.sty. + +package main; + +sub do_cmd_command { + return use_wrappers(@_[0], '', ''); +} + +sub do_cmd_option { + return use_wrappers(@_[0], '', ''); +} + +sub do_cmd_filevar { + return use_wrappers(@_[0], '', ''); +} + +sub do_cmd_XXX { + return use_wrappers(@_[0], '** ', ' **'); +} + +1;