changeset 881:3f56c4a164d3 octave-forge

List the ignored notes
author pkienzle
date Fri, 28 Mar 2003 14:59:58 +0000
parents 391d6cb29a47
children e624d86db651
files admin/make_index
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/admin/make_index	Fri Mar 28 14:48:38 2003 +0000
+++ b/admin/make_index	Fri Mar 28 14:59:58 2003 +0000
@@ -848,14 +848,15 @@
 sub html_desc { # 1{{{
 # html_desc($func) returns a description of $func using html markup
     my ( $func ) = @_;
+    my $notes = $index_notes{$func};
     if (! defined $function_description{$func}[1] ) {
-	my $notes = $index_notes{$func};
 	$notes = "not implemented" if $notes eq "";
 	# shut of the bold italics during "code" formatting
 	$notes =~ s|<code>|</i><code>|g;
 	$notes =~ s|</code>|</code><i>|g;
 	return "<i>$notes</i>";
     } else {
+	print "ignoring $func = $notes\n" if $notes ne "";
 	my $desc = $function_description{$func}[1];
 	if ($desc eq "") {
 	    return "<i>no description</i>";