From: Fred Drake Date: Mon, 12 Jul 1999 16:50:09 +0000 (+0000) Subject: do_cmd_funclineni(): New function; non-indexing form of \funcline. X-Git-Tag: v1.6a1~1083 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6b3fb78ca8094cdbf68dd556edc0ea9ee16217cb;p=thirdparty%2FPython%2Fcpython.git do_cmd_funclineni(): New function; non-indexing form of \funcline. --- diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 307944e5c569..d42fe1d9108d 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -627,6 +627,15 @@ sub do_cmd_funcline{ return "
$prefix ($arg_list)\n
" . $_; } +sub do_cmd_funclineni{ + local($_) = @_; + my $function_name = next_argument(); + my $arg_list = next_argument(); + my $prefix = "$function_name"; + + return "
$prefix ($arg_list)\n
" . $_; +} + # Change this flag to index the opcode entries. I don't think it's very # useful to index them, since they're only presented to describe the dis # module.