From: Ben Pfaff Date: Thu, 4 Feb 2010 04:02:31 +0000 (-0800) Subject: ascii: Remove unimplemented "tab-width" setting. X-Git-Tag: v0.7.4~35 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=commitdiff_plain;h=4801628dacf8914686f4114db56cbd84fdc672c9 ascii: Remove unimplemented "tab-width" setting. --- diff --git a/doc/configuring.texi b/doc/configuring.texi index 357388c8..fc3d160b 100644 --- a/doc/configuring.texi +++ b/doc/configuring.texi @@ -659,11 +659,6 @@ without the @code{cairo} library. If set, a formfeed will be written at the end of every page. Default: @code{on}. -@item tab-width=@var{tab-width-value} - -The distance between tab stops for this device. If set to 0, tabs will -not be used in the output. Default: @code{8}. - @item headers=@var{boolean} If enabled, two lines of header information giving title and subtitle, diff --git a/src/output/ascii.c b/src/output/ascii.c index 14ec71f2..ffe8515f 100644 --- a/src/output/ascii.c +++ b/src/output/ascii.c @@ -98,7 +98,6 @@ struct ascii_driver bool paginate; /* Insert formfeeds? */ bool squeeze_blank_lines; /* Squeeze multiple blank lines into one? */ enum emphasis_style emphasis; /* How to emphasize text. */ - int tab_width; /* Width of a tab; 0 not to use tabs. */ char *chart_file_name; /* Name of files used for charts. */ int width; /* Page width. */ @@ -179,7 +178,6 @@ ascii_create (const char *name, enum output_device_type device_type, "underline", EMPH_UNDERLINE, "none", EMPH_NONE, (char *) NULL); - a->tab_width = parse_int (opt (d, o, "tab-width", "0"), 8, INT_MAX); if (parse_enum (opt (d, o, "chart-type", "png"), "png", true,