diff options
author | Fred Drake <fdrake@acm.org> | 1998-04-13 14:18:57 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-04-13 14:18:57 (GMT) |
commit | 3ad125e6119f80596b15d3663249b8a15254811b (patch) | |
tree | dbd2bce45103889541d1f4de1e5a196784130fb1 /Doc | |
parent | 7238988657b3676e115e2528e83722a7d17e36c8 (diff) | |
download | cpython-3ad125e6119f80596b15d3663249b8a15254811b.zip cpython-3ad125e6119f80596b15d3663249b8a15254811b.tar.gz cpython-3ad125e6119f80596b15d3663249b8a15254811b.tar.bz2 |
Fix bug in little-used markup: don't forget to pass the source text along!
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/perl/python.perl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 92c00c5..d9ea19f 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -64,8 +64,8 @@ sub use_current{ $_; } -sub do_cmd_pytype{ use_current(); } -sub do_cmd_makevar{ use_current(); } +sub do_cmd_pytype{ use_current(@_); } +sub do_cmd_makevar{ use_current(@_); } # Logical formatting (some based on texinfo), needs to be converted to # minimalist HTML. The "minimalist" is primarily to reduce the size of |