From 397ac3fd635cdb180ad2890331fbb75dfc12322f Mon Sep 17 00:00:00 2001 From: ikits Date: Wed, 16 Jul 2003 07:49:57 +0000 Subject: [PATCH] *** empty log message *** git-svn-id: https://glew.svn.sourceforge.net/svnroot/glew/trunk/glew@108 783a27ee-832a-0410-bc00-9f386506c6dd --- auto/bin/parse_spec.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/auto/bin/parse_spec.pl b/auto/bin/parse_spec.pl index 2e03f6c..61478dc 100755 --- a/auto/bin/parse_spec.pl +++ b/auto/bin/parse_spec.pl @@ -176,15 +176,15 @@ sub parse_spec($) # add line to function list push @fnc, $_; - my $f = normalize_prototype(@fnc); - print STDERR "$f\n"; + # my $f = normalize_prototype(@fnc); + # print STDERR "$f\n"; # if normalized version of function looks like a function if (normalize_prototype(@fnc) =~ /$regex{function}/) { # get return type, name, and arguments, add them to functions hash my ($return, $name, $parms) = ($1, $2, $3); - print STDERR "$1 | $2 | $3\n"; + # print STDERR "$1 | $2 | $3\n"; if (!ignore_function($name, $extname)) { $name =~ s/^/gl/ unless $name =~ /$regex{prefix}/;