Commit 6b4b0d24 authored by Fred Drake's avatar Fred Drake

do_cmd_methodlineni(): New function, needed because the ref. manual now

	actually uses this markup.
parent c60b0ca5
...@@ -662,6 +662,15 @@ sub do_env_methoddesc{ ...@@ -662,6 +662,15 @@ sub do_env_methoddesc{
} }
sub do_cmd_methodlineni{
local($_) = @_;
next_optional_argument();
my $method = next_argument();
my $arg_list = next_argument();
return "<dt><b>$method</b> (<var>$arg_list</var>)\n<dd>"
. $_;
}
sub do_env_methoddescni{ sub do_env_methoddescni{
local($_) = @_; local($_) = @_;
next_optional_argument(); next_optional_argument();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment