From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by sourceware.org (Postfix) with ESMTPS id 611DE386CE72 for ; Thu, 30 Jun 2022 09:39:41 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 611DE386CE72 Received: from mail-wm1-f71.google.com (mail-wm1-f71.google.com [209.85.128.71]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-613-fQnstw9kPICKiSSqtpiYew-1; Thu, 30 Jun 2022 05:39:39 -0400 X-MC-Unique: fQnstw9kPICKiSSqtpiYew-1 Received: by mail-wm1-f71.google.com with SMTP id r4-20020a1c4404000000b003a02fa133ceso3678147wma.2 for ; Thu, 30 Jun 2022 02:39:39 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:in-reply-to:references:date :message-id:mime-version; bh=ftDiymLlcJvYJA310cFo/hocPXxZcnfmbEgpkMWZCvE=; b=wEOxfk5PveFe1ZWx8Zi275xUJfgZJxZh2yDh2K9uZGu4ZP25RmL3LV+t+8p/e4Swd4 xAb0+gpsbRrek2Hds4FBQ/Q9qW0vIglV2PQOeo3mge/eU4wJmTSL/oSgF1twSyIRXp3V ZDVrQC+U+yfOgFXn1WT9/FLChRZs97z7EC0r3/S7JzVbiPDa2bZiNV5fMrCLAcIDYyHq 0FVuY5BfEnve9MI+cKI1D15JwhC8+SLDMbYaA1iGmwO5E9wgIt9vyOo1rHqS+2Bj+mbl ls8JdD+DGGMHsIylEVElYTtmN7PshKHP9vPAgb0TGHO4hqlsCAax2B8b08kd7lHB72ta H0vw== X-Gm-Message-State: AJIora/lZAmBcoESUzWhhYUrkJodmalnwPGUdNXbq7IqhLYh0BRG4sR1 uPaWu4QC/KTI4AxUhUvy1d20znoZiR/S123zJyxHoyoZGNfhEWeEdFLcSySSxZTN7OPN/xiV1Bk OlbYOi3hNgPvtEfChytx5BQ== X-Received: by 2002:a5d:644a:0:b0:21a:75f3:ac7c with SMTP id d10-20020a5d644a000000b0021a75f3ac7cmr7013736wrw.506.1656581978290; Thu, 30 Jun 2022 02:39:38 -0700 (PDT) X-Google-Smtp-Source: AGRyM1uzCbs4J7aK50u582HeKxN+Ig+5LTExDgSVIEcekdgkyaizClUWlqVMaF7zswTabulgJhWyUg== X-Received: by 2002:a5d:644a:0:b0:21a:75f3:ac7c with SMTP id d10-20020a5d644a000000b0021a75f3ac7cmr7013726wrw.506.1656581978116; Thu, 30 Jun 2022 02:39:38 -0700 (PDT) Received: from localhost (15.72.115.87.dyn.plus.net. [87.115.72.15]) by smtp.gmail.com with ESMTPSA id f18-20020adfb612000000b002185631adf0sm19568306wre.23.2022.06.30.02.39.36 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 30 Jun 2022 02:39:37 -0700 (PDT) From: Andrew Burgess To: Eli Zaretskii Cc: gdb-patches@sourceware.org Subject: Re: [PATCH 6/9] gdb/doc: fix column widths in MI compatibility table In-Reply-To: <834k0be4e2.fsf@gnu.org> References: <834k0be4e2.fsf@gnu.org> Date: Thu, 30 Jun 2022 10:39:35 +0100 Message-ID: <87iloicwx4.fsf@redhat.com> MIME-Version: 1.0 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain X-Spam-Status: No, score=-4.6 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_BARRACUDACENTRAL, RCVD_IN_DNSWL_LOW, SPF_HELO_NONE, SPF_NONE, TXREP, T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Jun 2022 09:39:42 -0000 Eli Zaretskii via Gdb-patches writes: >> Date: Thu, 23 Jun 2022 17:05:13 +0100 >> From: Andrew Burgess via Gdb-patches >> Cc: Andrew Burgess >> >> In passing I noticed that the column headings for the table of MI >> compatibility and breaking changes, were overlapping, at least when >> the PDF is generated on my machine. >> >> I propose giving slightly more space to the two version number >> columns, this prevents the headers overlapping for me. > > This should fall under the "obvious change" rule. Thanks, pushed. Andrew