From 6cef60ba4ad84d33ec4f3fbfabac0563edeadd44 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 6 Nov 2014 20:48:40 -0800 Subject: [PATCH] Generalize dump_title() footnote handling. --- dump.c | 32 +++----------------------------- 1 file changed, 3 insertions(+), 29 deletions(-) diff --git a/dump.c b/dump.c index cdd666c07c..a3e10f47c7 100644 --- a/dump.c +++ b/dump.c @@ -1101,42 +1101,16 @@ dump_title(void) match_byte(0); match_byte(0); match_byte(0); - if (match_byte (1)) - { - unsigned int format; - double value; - - if (match_byte (0x31)) - { - if (match_u32 (1)) - { - printf("(footnote %d) ", get_u32()); - match_byte_assert (0); - match_byte_assert (0); - int subn = get_u32 (); - printf ("nested %d bytes", subn); - pos += subn; - } - } - else - match_byte_assert (0x58); - format = get_u32 (); - value = get_double (); - printf ("value %g format %d(%d.%d)", value, format >> 16, (format >> 8) & 0xff, format & 0xff); - match_byte (1); - match_byte (0); - match_byte (0); - match_byte (0); - match_byte (1); - } + if (data[pos] == 1) + dump_footnote_value(0); else if (match_byte (0x31)) { + /* Custom footnote marker string. */ match_byte_assert(3); get_string(); match_byte_assert(0x58); match_u32_assert(0); get_string(); - match_byte(0); } else match_byte_assert (0x58); -- 2.30.2