From 6b3fb78ca8094cdbf68dd556edc0ea9ee16217cb Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Mon, 12 Jul 1999 16:50:09 +0000 Subject: do_cmd_funclineni(): New function; non-indexing form of \funcline. --- Doc/perl/python.perl | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 307944e..d42fe1d 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. -- cgit v0.12