Nibbler
- using wrongly ispunct instead of isPunctuation
This commit is contained in:
@@ -973,7 +973,7 @@ bool Nibbler::getWord (std::string& result)
|
|||||||
if (i < _length)
|
if (i < _length)
|
||||||
{
|
{
|
||||||
while (!isdigit (_input[i]) &&
|
while (!isdigit (_input[i]) &&
|
||||||
!ispunct (_input[i]) &&
|
!isPunctuation (_input[i]) &&
|
||||||
!isspace (_input[i]))
|
!isspace (_input[i]))
|
||||||
{
|
{
|
||||||
++i;
|
++i;
|
||||||
|
|||||||
Reference in New Issue
Block a user