By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2543
Collapse All | Expand All

(-)a/kalyptus/kdocAstUtil.pm (-1 / +1 lines)
Lines 675-681 sub dumpAst Link Here
675
	}
675
	}
676
676
677
	print "\t" x $depth, "Documentation nodes:\n" if defined 
677
	print "\t" x $depth, "Documentation nodes:\n" if defined 
678
		@{ $node->{Doc}->{ "Text" }};
678
		$node->{Doc}->{ "Text" };
679
679
680
	foreach $kid ( @{ $node->{Doc}->{ "Text" }} ) {
680
	foreach $kid ( @{ $node->{Doc}->{ "Text" }} ) {
681
		dumpAst( $kid );
681
		dumpAst( $kid );

Return to bug 2543