diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-05-17 01:30:35 -0300 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-05-17 01:30:35 -0300 |
commit | dbfd651c575c17f8b891bd789a60d11ca954751e (patch) | |
tree | 36bfd8fb47c0726cbd538effefc2cc2da3fc8e43 /src/template-parser.h | |
parent | f7a4ecf2add403c8b078658406fcfed5486fdd2c (diff) | |
download | blogc-dbfd651c575c17f8b891bd789a60d11ca954751e.tar.gz blogc-dbfd651c575c17f8b891bd789a60d11ca954751e.tar.bz2 blogc-dbfd651c575c17f8b891bd789a60d11ca954751e.zip |
template-parser: if -> ifdef, if not -> ifndef
Diffstat (limited to 'src/template-parser.h')
-rw-r--r-- | src/template-parser.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/template-parser.h b/src/template-parser.h index 8fe3630..88c9ccf 100644 --- a/src/template-parser.h +++ b/src/template-parser.h @@ -13,8 +13,8 @@ #include "error.h" typedef enum { - BLOGC_TEMPLATE_IF_STMT = 1, - BLOGC_TEMPLATE_IF_NOT_STMT, + BLOGC_TEMPLATE_IFDEF_STMT = 1, + BLOGC_TEMPLATE_IFNDEF_STMT, BLOGC_TEMPLATE_ENDIF_STMT, BLOGC_TEMPLATE_BLOCK_STMT, BLOGC_TEMPLATE_ENDBLOCK_STMT, |