mirror of https://github.com/python/cpython
Fix bug in little-used markup: don't forget to pass the source text along!
This commit is contained in:
parent
7238988657
commit
3ad125e611
|
@ -64,8 +64,8 @@ sub use_current{
|
||||||
$_;
|
$_;
|
||||||
}
|
}
|
||||||
|
|
||||||
sub do_cmd_pytype{ use_current(); }
|
sub do_cmd_pytype{ use_current(@_); }
|
||||||
sub do_cmd_makevar{ use_current(); }
|
sub do_cmd_makevar{ use_current(@_); }
|
||||||
|
|
||||||
# Logical formatting (some based on texinfo), needs to be converted to
|
# Logical formatting (some based on texinfo), needs to be converted to
|
||||||
# minimalist HTML. The "minimalist" is primarily to reduce the size of
|
# minimalist HTML. The "minimalist" is primarily to reduce the size of
|
||||||
|
|
Loading…
Reference in New Issue