Renamed language option constants

This commit is contained in:
Daniel Holden
2014-04-15 16:06:59 +01:00
parent 0164931350
commit 8d0ee197e1
8 changed files with 18 additions and 18 deletions

6
mpc.h
View File

@@ -285,9 +285,9 @@ mpc_parser_t *mpca_or(int n, ...);
mpc_parser_t *mpca_and(int n, ...);
enum {
MPC_LANG_DEFAULT = 0,
MPC_LANG_PREDICTIVE = 1,
MPC_LANG_WHITESPACE_SENSITIVE = 2
MPCA_LANG_DEFAULT = 0,
MPCA_LANG_PREDICTIVE = 1,
MPCA_LANG_WHITESPACE_SENSITIVE = 2
};
mpc_parser_t *mpca_grammar(int flags, const char *grammar, ...);