Make text output left-justified in ascii and cairo drivers.
authorBen Pfaff <blp@gnu.org>
Fri, 5 Feb 2010 05:06:13 +0000 (21:06 -0800)
committerBen Pfaff <blp@gnu.org>
Fri, 5 Feb 2010 05:18:12 +0000 (21:18 -0800)
This only makes a difference for text output that wraps across lines, for
example with long error messages.

src/output/ascii.c
src/output/cairo.c

index 85c31c183f49e674c5a1ea28b6249928b27f1f44..14ec71f277d0ae94bef56c9e30247b98ee22bc75 100644 (file)
@@ -523,7 +523,8 @@ ascii_submit (struct output_driver *driver,
           {
             struct table_item *item;
 
-            item = table_item_create (table_from_string (0, text), NULL);
+            item = table_item_create (table_from_string (TAB_LEFT, text),
+                                      NULL);
             ascii_submit (&a->driver, &item->output_item);
             table_item_unref (item);
           }
index 612878035eb98baf98e20020c1c33919fad19355..ba94cc53762fbd28c623e8a4e2218440f8f5ffbd 100644 (file)
@@ -487,7 +487,8 @@ xr_submit (struct output_driver *driver, const struct output_item *output_item)
           {
             struct table_item *item;
 
-            item = table_item_create (table_from_string (0, text), NULL);
+            item = table_item_create (table_from_string (TAB_LEFT, text),
+                                      NULL);
             xr_submit (&xr->driver, &item->output_item);
             table_item_unref (item);
           }
@@ -945,7 +946,8 @@ xr_rendering_create (struct xr_driver *xr, const struct output_item *item,
       const char *text = text_item_get_text (text_item);
       struct table_item *table_item;
 
-      table_item = table_item_create (table_from_string (0, text), NULL);
+      table_item = table_item_create (table_from_string (TAB_LEFT, text),
+                                      NULL);
       r = xr_rendering_create (xr, &table_item->output_item, cr);
       table_item_unref (table_item);
     }