From 15c939c3d766dded85a655b2fb0804640e1917db Mon Sep 17 00:00:00 2001 From: Federico Hernandez Date: Mon, 5 Sep 2011 22:36:57 +0200 Subject: [PATCH] Nibbler - using wrongly ispunct instead of isPunctuation --- src/Nibbler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Nibbler.cpp b/src/Nibbler.cpp index 8c7380bb9..b50ddf7f0 100644 --- a/src/Nibbler.cpp +++ b/src/Nibbler.cpp @@ -973,7 +973,7 @@ bool Nibbler::getWord (std::string& result) if (i < _length) { while (!isdigit (_input[i]) && - !ispunct (_input[i]) && + !isPunctuation (_input[i]) && !isspace (_input[i])) { ++i;