From: Fred Drake Date: Mon, 10 Apr 2000 17:47:14 +0000 (+0000) Subject: do_cmd_datalineni(): New function, to implement the non-indexing form X-Git-Tag: v1.6a2~32 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=adb272ceeed1fe6e2af2e51982c305066cec7244;p=python do_cmd_datalineni(): New function, to implement the non-indexing form of \dataline. --- diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 6b67df5b05..c6306dc340 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -773,6 +773,12 @@ sub do_cmd_dataline{ return "
$idx
" . $_; } +sub do_cmd_datalineni{ + local($_) = @_; + my $data_name = next_argument(); + return "
$data_name
" . $_; +} + sub do_env_excdesc{ local($_) = @_; my $excname = next_argument();