diff options
-rw-r--r-- | source/fitz/stext-paragraph.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/fitz/stext-paragraph.c b/source/fitz/stext-paragraph.c index 11925f77..adab5623 100644 --- a/source/fitz/stext-paragraph.c +++ b/source/fitz/stext-paragraph.c @@ -224,6 +224,7 @@ is_unicode_bullet(int c) c == '*'); } +#ifdef SPOT_LINE_NUMBERS static inline int is_number(int c) { @@ -248,6 +249,7 @@ is_roman(int c) c == 'c' || c == 'C' || c == 'm' || c == 'M'); } +#endif static int is_list_entry(fz_text_line *line, fz_text_span *span, int *char_num_ptr) |