diff options
Diffstat (limited to 'cgit.h')
-rw-r--r-- | cgit.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h index 508179a..f327627 100644 --- a/cgit.h +++ b/cgit.h | |||
@@ -25,6 +25,9 @@ | |||
25 | #include <notes.h> | 25 | #include <notes.h> |
26 | #include <graph.h> | 26 | #include <graph.h> |
27 | 27 | ||
28 | /* Add isgraph(x) to Git's sane ctype support (see git-compat-util.h) */ | ||
29 | #undef isgraph | ||
30 | #define isgraph(x) (isprint((x)) && !isspace((x))) | ||
28 | 31 | ||
29 | /* | 32 | /* |
30 | * Dateformats used on misc. pages | 33 | * Dateformats used on misc. pages |