aboutsummaryrefslogtreecommitdiff
path: root/syntax.h
diff options
context:
space:
mode:
authorStephen Paul Weber <singpolyma@singpolyma.net>2014-10-06 22:05:46 -0500
committerMarc André Tanner <mat@brain-dump.org>2014-10-07 10:23:34 +0200
commit9b06e28e2ce599a7a4911212e357b5d35fe0b08f (patch)
tree0da9521b149b391eb2d3576687b446eabfb7a6e9 /syntax.h
parent0d7bc06c3cfd5764c1aefca6620a73b7bed3733d (diff)
downloadvis-9b06e28e2ce599a7a4911212e357b5d35fe0b08f.tar.gz
vis-9b06e28e2ce599a7a4911212e357b5d35fe0b08f.tar.xz
Add syntax rules for Haskell
Diffstat (limited to 'syntax.h')
-rw-r--r--syntax.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax.h b/syntax.h
index 262ab28..a38c87f 100644
--- a/syntax.h
+++ b/syntax.h
@@ -20,7 +20,7 @@ struct Syntax { /* a syntax definition */
char *name; /* syntax name */
char *file; /* apply to files matching this regex */
regex_t file_regex; /* compiled file name regex */
- SyntaxRule rules[12]; /* all rules for this file type */
+ SyntaxRule rules[24]; /* all rules for this file type */
};
#endif