diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/source-parser.c | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/src/source-parser.c b/src/source-parser.c index 5c9d41d..f9a60ae 100644 --- a/src/source-parser.c +++ b/src/source-parser.c @@ -93,7 +93,9 @@ blogc_source_parse(const char *src, size_t src_len, blogc_error_t **err)                          ((current - start == 9) &&                           (0 == strncmp("PAGE_NEXT", src + start, 9))) ||                          ((current - start == 9) && -                         (0 == strncmp("PAGE_LAST", src + start, 9)))) +                         (0 == strncmp("PAGE_LAST", src + start, 9))) || +                        ((current - start == 13) && +                         (0 == strncmp("BLOGC_VERSION", src + start, 13))))                      {                          *err = blogc_error_new_printf(BLOGC_ERROR_SOURCE_PARSER,                              "'%s' variable is forbidden in source files. It will " | 
