coar 01/06/24 05:07:12 Modified: apidoc/tools finddef.pl Log: Only deal with constants for the moment.. Revision Changes Path 1.2 +3 -2 httpd-docs-1.3/apidoc/tools/finddef.pl Index: finddef.pl =================================================================== RCS file: /home/cvs/httpd-docs-1.3/apidoc/tools/finddef.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -u -r1.1 -r1.2 --- finddef.pl 2001/06/22 13:02:01 1.1 +++ finddef.pl 2001/06/24 12:07:11 1.2 @@ -17,7 +17,8 @@ @elist = $dict->entity_list(); foreach (sort(@elist)) { - if ($dict->definition($_) !~ /#include/) { - print "\n $_\n", `grep "$_" ~/ap1/src/include/*.h`; + if (($dict->category($_) eq 'C') + && ($dict->definition($_) !~ /#include/)) { + print "\n $_\n", `grep "$_" ~/apache-1.3/src/include/*.h`; } }
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]