Skip Menu |

This queue is for tickets about the Text-Aspell CPAN distribution.

Report information
The Basics
Id: 8634
Status: resolved
Priority: 0/
Queue: Text-Aspell

People
Owner: Nobody in particular
Requestors: at [...] altlinux.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.04
Fixed in: (no value)



Subject: _create_speller should be static
Hello, Functions before MODULE directive should be declared as static in order to avoid namespace pollution. -- Alexey Tourbin ALT Linux Team
Functions before MODULE directive should be declared as static in order not to pollute namespace. --- Text-Aspell-0.04/Aspell.xs- 2003-08-03 15:11:55 +0000 +++ Text-Aspell-0.04/Aspell.xs 2004-11-27 22:12:14 +0000 @@ -17,6 +17,7 @@ typedef struct { } Aspell_object; +static int _create_speller(Aspell_object *self) { AspellCanHaveError *ret;
Fixed for 0.05. Thanks.