From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 73771 invoked by alias); 28 Nov 2018 06:51:55 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 73756 invoked by uid 89); 28 Nov 2018 06:51:54 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-6.9 required=5.0 tests=BAYES_00,GIT_PATCH_1,SPF_PASS autolearn=ham version=3.3.2 spammy=family X-HELO: eggs.gnu.org Received: from eggs.gnu.org (HELO eggs.gnu.org) (208.118.235.92) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 28 Nov 2018 06:51:52 +0000 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gRthL-00034Z-NK for gdb-patches@sourceware.org; Wed, 28 Nov 2018 01:51:50 -0500 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:52633) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gRthL-00034T-KD; Wed, 28 Nov 2018 01:51:47 -0500 Received: from [176.228.60.248] (port=2348 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1gRthL-0005mU-7s; Wed, 28 Nov 2018 01:51:47 -0500 Date: Wed, 28 Nov 2018 06:51:00 -0000 Message-Id: <83lg5dg0du.fsf@gnu.org> From: Eli Zaretskii To: Tom Tromey CC: gdb-patches@sourceware.org In-reply-to: <20181128001435.12703-17-tom@tromey.com> (message from Tom Tromey on Tue, 27 Nov 2018 17:14:35 -0700) Subject: Re: [PATCH 16/16] Document the "set style" commands References: <20181128001435.12703-1-tom@tromey.com> <20181128001435.12703-17-tom@tromey.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-IsSubscribed: yes X-SW-Source: 2018-11/txt/msg00511.txt.bz2 > From: Tom Tromey > Cc: Tom Tromey > Date: Tue, 27 Nov 2018 17:14:35 -0700 > > +For example, the style of file names can be controlled using the > +@code{set style filename} group of commands: > + > +@table @code > +@kindex set style filename background > +@item set style filename background @var{color} > +Set the background to @var{color}. Valid colors are @samp{none} > +(meaning the terminal's default color), @samp{black}, @samp{red}, > +@samp{green}, @samp{yellow}, @samp{vlue}, @samp{magenta}, @samp{cyan}, > +and@samp{white}. > + > +@kindex set style filename foreground > +@item set style filename foreground @var{color} > +Set the foreground to @var{color}. Valid colors are @samp{none} > +(meaning the terminal's default color), @samp{black}, @samp{red}, > +@samp{green}, @samp{yellow}, @samp{vlue}, @samp{magenta}, @samp{cyan}, > +and@samp{white}. > + > +@kindex set style filename intensity > +@item set style filename intensity @var{value} > +Set the intensity to @var{value}. Valid intensities are @samp{normal} > +(the default), @samp{bold}, and @samp{dim}. > +@end table > + > +The style-able objects are: > +@table @code > +@kindex set style filename > +@item filename > +Control the styling of file names. > + > +@kindex set style function > +@item function > +Control the styling of function names. These are managed with the > +@code{set style function} family of commands. > + > +@kindex set style variable > +@item variable > +Control the styling of variable names. These are managed with the > +@code{set style variable} family of commands. > + > +@kindex set style address > +@item address > +Control the styling of addresses. These are managed with the > +@code{set style address} family of commands. > +@end table The text is OK, but you have numerous "set style" index entries that all start with the same substring and will point to almost the same page. This is not useful, IME. I suggest just a single index entry about "set style" instead. Thanks.