Return-Path: Delivered-To: apmail-apache-docs-archive@apache.org Received: (qmail 99029 invoked by uid 500); 24 Jun 2001 12:07:13 -0000 Mailing-List: contact apache-docs-help@apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: apache-docs@apache.org Delivered-To: mailing list apache-docs@apache.org Received: (qmail 99010 invoked by uid 500); 24 Jun 2001 12:07:12 -0000 Delivered-To: apmail-httpd-docs-1.3-cvs@apache.org Date: 24 Jun 2001 12:07:12 -0000 Message-ID: <20010624120712.99005.qmail@apache.org> From: coar@apache.org To: httpd-docs-1.3-cvs@apache.org Subject: cvs commit: httpd-docs-1.3/apidoc/tools finddef.pl 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: apache-docs-unsubscribe@apache.org For additional commands, e-mail: apache-docs-help@apache.org