Kaydet (Commit) ca675e49 authored tarafından Fred Drake's avatar Fred Drake

do_cmd_funcline(): Remove some bogus generated stuff from the output

		    (some text was only intended for the index).
üst 3d815bd1
...@@ -589,10 +589,11 @@ sub do_cmd_funcline{ ...@@ -589,10 +589,11 @@ sub do_cmd_funcline{
local($_) = @_; local($_) = @_;
my $function_name = next_argument(); my $function_name = next_argument();
my $arg_list = next_argument(); my $arg_list = next_argument();
my $idx = make_str_index_entry("<tt class=function>$function_name()</tt>" my $prefix = "<tt class=function>$function_name()</tt>";
. get_indexsubitem()); my $idx = make_str_index_entry($prefix . get_indexsubitem());
$idx =~ s/\(\)//; $prefix =~ s/\(\)//;
return "<dt><b>$idx</b> (<var>$arg_list</var>)\n<dd>" . $_;
return "<dt><b>$prefix</b> (<var>$arg_list</var>)\n<dd>" . $_;
} }
# Change this flag to index the opcode entries. I don't think it's very # Change this flag to index the opcode entries. I don't think it's very
......
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