ascii: Remove unimplemented "tab-width" setting.
authorBen Pfaff <blp@gnu.org>
Thu, 4 Feb 2010 04:02:31 +0000 (20:02 -0800)
committerBen Pfaff <blp@gnu.org>
Sat, 6 Feb 2010 04:14:18 +0000 (20:14 -0800)
doc/configuring.texi
src/output/ascii.c

index 357388c8b28809656f0deb579fcd0326379bbc79..fc3d160b57b941a83c6312cc7d2b59e95d0f3ade 100644 (file)
@@ -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,
index 14ec71f277d0ae94bef56c9e30247b98ee22bc75..ffe8515f8b51a7bc3147431e9b68ad30b44aa8b8 100644 (file)
@@ -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,