From: John Darrington Date: Fri, 17 May 2013 07:55:21 +0000 (+0200) Subject: Cairo output: Add a bit of horizontal between table columns. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=38011e10009c19279add8acfad1e889936ce59fc;p=pspp Cairo output: Add a bit of horizontal between table columns. Fixes bug #34798 --- diff --git a/src/output/cairo.c b/src/output/cairo.c index 32586f7937..4bb601be22 100644 --- a/src/output/cairo.c +++ b/src/output/cairo.c @@ -267,7 +267,7 @@ apply_options (struct xr_driver *xr, struct string_map *o) xr->fonts[XR_FONT_EMPHASIS].desc = parse_font (d, o, "emph-font", "serif italic", font_points); - xr->line_gutter = XR_POINT; + xr->line_gutter = parse_dimension (opt (d, o, "gutter", "3pt")); xr->line_space = XR_POINT; xr->line_width = XR_POINT / 2; xr->page_number = 0;