Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d815bd commit ca675e4Copy full SHA for ca675e4
1 file changed
Doc/perl/python.perl
@@ -589,10 +589,11 @@ sub do_cmd_funcline{
589
local($_) = @_;
590
my $function_name = next_argument();
591
my $arg_list = next_argument();
592
- my $idx = make_str_index_entry("<tt class=function>$function_name()</tt>"
593
- . get_indexsubitem());
594
- $idx =~ s/\(\)//;
595
- return "<dt><b>$idx</b> (<var>$arg_list</var>)\n<dd>" . $_;
+ my $prefix = "<tt class=function>$function_name()</tt>";
+ my $idx = make_str_index_entry($prefix . get_indexsubitem());
+ $prefix =~ s/\(\)//;
+
596
+ return "<dt><b>$prefix</b> (<var>$arg_list</var>)\n<dd>" . $_;
597
}
598
599
# Change this flag to index the opcode entries. I don't think it's very
0 commit comments