From 4801628dacf8914686f4114db56cbd84fdc672c9 Mon Sep 17 00:00:00 2001
From: Ben Pfaff <blp@gnu.org>
Date: Wed, 3 Feb 2010 20:02:31 -0800
Subject: [PATCH] ascii: Remove unimplemented "tab-width" setting.

---
 doc/configuring.texi | 5 -----
 src/output/ascii.c   | 2 --
 2 files changed, 7 deletions(-)

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,
-- 
2.30.2