mirror of
https://github.com/python/cpython.git
synced 2025-07-26 04:34:20 +00:00
Fix bug in little-used markup: don't forget to pass the source text along!
This commit is contained in:
parent
7238988657
commit
3ad125e611
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue