Commit 075d6e7d by Russell Belfer

Merge pull request #679 from nulltoken/fix/git__isspace

util: Fix git__isspace() implementation
parents b470019f 9cd25d00
......@@ -206,7 +206,7 @@ GIT_INLINE(bool) git__isalpha(int c)
GIT_INLINE(bool) git__isspace(int c)
{
return (c == ' ' || c == '\t' || c == '\n' || c == '\12');
return (c == ' ' || c == '\t' || c == '\n' || c == '\f' || c == '\r' || c == '\v');
}
#endif /* INCLUDE_util_h__ */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment