Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicent Martí <vicent@github.com>2012-07-12 20:32:44 +0400
committerVicent Martí <vicent@github.com>2012-07-12 20:32:44 +0400
commit48bcf81dd2584d91e5922dd1458dab6c4173bdcf (patch)
treec834ff548520151966e6b04ef2ec19d475ff18e6 /src/util.h
parent111ee3fe2d4c6de6729b94235c709986b4079c4b (diff)
parent54e29b9380f1cd0fa596d71c317de907da19b13d (diff)
Merge pull request #812 from arrbee/assorted-tweaks
Assorted goodies
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h
index abdd543cc..a84dcab1e 100644
--- a/src/util.h
+++ b/src/util.h
@@ -211,7 +211,7 @@ GIT_INLINE(bool) git__isdigit(int c)
GIT_INLINE(bool) git__isspace(int c)
{
- return (c == ' ' || c == '\t' || c == '\n' || c == '\f' || c == '\r' || c == '\v');
+ return (c == ' ' || c == '\t' || c == '\n' || c == '\f' || c == '\r' || c == '\v' || c == 0x85 /* Unicode CR+LF */);
}
GIT_INLINE(bool) git__iswildcard(int c)