X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fdriver.c;h=cf0a535f3c059ce6ae9b05a084b76ea94925265c;hb=e91782a2d25dec932c93b7a57bd03d836614ba43;hp=82556c81d0c41d858f816eb41939be613bfc8f51;hpb=0536ee7f632fbc31e54d4f6782940b107bcc7efe;p=pspp diff --git a/src/output/driver.c b/src/output/driver.c index 82556c81d0..cf0a535f3c 100644 --- a/src/output/driver.c +++ b/src/output/driver.c @@ -194,7 +194,11 @@ defer_text (struct output_engine *e, struct output_item *item) if (!is_text_item (item)) return false; - enum text_item_type type = text_item_get_type (to_text_item (item)); + struct text_item *text_item = to_text_item (item); + if (text_item->markup) /* XXX */ + return false; + + enum text_item_type type = text_item_get_type (text_item); if (type != TEXT_ITEM_SYNTAX && type != TEXT_ITEM_LOG) return false; @@ -206,7 +210,7 @@ defer_text (struct output_engine *e, struct output_item *item) if (!ds_is_empty (&e->deferred_text)) ds_put_byte (&e->deferred_text, '\n'); - const char *text = text_item_get_text (to_text_item (item)); + const char *text = text_item_get_text (text_item); ds_put_cstr (&e->deferred_text, text); output_item_unref (item); @@ -285,7 +289,7 @@ output_get_command_name (void) if (e == NULL) return NULL; - for (size_t i = e->n_groups; i-- > 0; ) + for (size_t i = e->n_groups; i-- > 0;) if (e->groups[i]) return utf8_to_upper (e->groups[i]); @@ -431,11 +435,14 @@ extern const struct output_driver_factory list_driver_factory; extern const struct output_driver_factory html_driver_factory; extern const struct output_driver_factory csv_driver_factory; extern const struct output_driver_factory odt_driver_factory; +extern const struct output_driver_factory spv_driver_factory; #ifdef HAVE_CAIRO extern const struct output_driver_factory pdf_driver_factory; extern const struct output_driver_factory ps_driver_factory; extern const struct output_driver_factory svg_driver_factory; +extern const struct output_driver_factory png_driver_factory; #endif +extern const struct output_driver_factory tex_driver_factory; static const struct output_driver_factory *factories[] = { @@ -444,11 +451,14 @@ static const struct output_driver_factory *factories[] = &html_driver_factory, &csv_driver_factory, &odt_driver_factory, + &spv_driver_factory, #ifdef HAVE_CAIRO &pdf_driver_factory, &ps_driver_factory, &svg_driver_factory, + &png_driver_factory, #endif + &tex_driver_factory, NULL }; @@ -590,7 +600,7 @@ output_driver_substitute_heading_vars (const char *src, int page_number) struct output_engine *e = engine_stack_top (); struct string dst = DS_EMPTY_INITIALIZER; ds_extend (&dst, strlen (src)); - for (const char *p = src; *p; ) + for (const char *p = src; *p;) { if (!strncmp (p, "&[", 6)) {