From unknown Thu Aug 14 21:22:52 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#25308 <25308@debbugs.gnu.org> To: bug#25308 <25308@debbugs.gnu.org> Subject: Status: Shorten long "ui-lines" in Custom buffers Reply-To: bug#25308 <25308@debbugs.gnu.org> Date: Fri, 15 Aug 2025 04:22:52 +0000 retitle 25308 Shorten long "ui-lines" in Custom buffers reassign 25308 emacs submitter 25308 Jonas Bernoulli severity 25308 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 31 08:25:49 2016 Received: (at submit) by debbugs.gnu.org; 31 Dec 2016 13:25:49 +0000 Received: from localhost ([127.0.0.1]:60914 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cNJfQ-0003Av-RQ for submit@debbugs.gnu.org; Sat, 31 Dec 2016 08:25:49 -0500 Received: from eggs.gnu.org ([208.118.235.92]:51976) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cNJfP-0003Ag-LK for submit@debbugs.gnu.org; Sat, 31 Dec 2016 08:25:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cNJfJ-0007A1-Kb for submit@debbugs.gnu.org; Sat, 31 Dec 2016 08:25:42 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:59861) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cNJfJ-00079v-Gb for submit@debbugs.gnu.org; Sat, 31 Dec 2016 08:25:41 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42946) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cNJfI-0006VF-BQ for bug-gnu-emacs@gnu.org; Sat, 31 Dec 2016 08:25:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cNJfF-00079C-95 for bug-gnu-emacs@gnu.org; Sat, 31 Dec 2016 08:25:40 -0500 Received: from mail.hostpark.net ([212.243.197.30]:46016) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cNJfF-00078h-1S for bug-gnu-emacs@gnu.org; Sat, 31 Dec 2016 08:25:37 -0500 Received: from localhost (localhost [127.0.0.1]) by mail.hostpark.net (Postfix) with ESMTP id 25ADC1654E for ; Sat, 31 Dec 2016 14:25:31 +0100 (CET) X-Virus-Scanned: by Hostpark/NetZone Mailprotection at hostpark.net Received: from mail.hostpark.net ([127.0.0.1]) by localhost (mail1.hostpark.net [127.0.0.1]) (amavisd-new, port 10124) with ESMTP id 89UpkCpWzQ0d for ; Sat, 31 Dec 2016 14:25:31 +0100 (CET) Received: from hal (178-82-62-170.dynamic.hispeed.ch [178.82.62.170]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.hostpark.net (Postfix) with ESMTPSA id EE38B16559 for ; Sat, 31 Dec 2016 14:25:30 +0100 (CET) User-agent: mu4e 0.9.18; emacs 25.1.1 From: Jonas Bernoulli To: bug-gnu-emacs@gnu.org Subject: Shorten long "ui-lines" in Custom buffers Date: Sat, 31 Dec 2016 14:26:06 +0100 Message-ID: <87eg0o2psh.fsf@bernoul.li> MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) Custom buffers contain two long lines, the first separating the initial buttons from the options shown below, and the second is for symmetry, I suppose. This is implemented in `custom-group-value-create'. These lines are 999 characters long. When point ends up on the "line line", then it ends up at the *end* of that line, scrolling all content except for the line itself off-window. This happens both with C-n/C-p, as well as when using the mouse scroll wheel. This is very distracting and I would suggest that these lines be removed completely. If that is not an option, then I would suggest to make the lines short enough for them to almost always end before the window edge. 80 characters instead of 999 would do, I think. If that is considered to be too ugly, then I would suggest setting the `:align-to' to be just long enough to reach the edge of the window (but never longer) at the time `custom-group-value-create' is called, using something like: (list 'space :align-to `(+ (0 . right) ,(min (window-hscroll) (- (line-end-position) (line-beginning-position))))) Thanks for considering these options. From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 31 08:57:41 2016 Received: (at 25308) by debbugs.gnu.org; 31 Dec 2016 13:57:41 +0000 Received: from localhost ([127.0.0.1]:60920 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cNKAH-0003ug-FM for submit@debbugs.gnu.org; Sat, 31 Dec 2016 08:57:41 -0500 Received: from eggs.gnu.org ([208.118.235.92]:55450) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cNKAF-0003uQ-JK for 25308@debbugs.gnu.org; Sat, 31 Dec 2016 08:57:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cNKA4-0002M0-Tp for 25308@debbugs.gnu.org; Sat, 31 Dec 2016 08:57:33 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.4 required=5.0 tests=BAYES_50,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:46495) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cNKA4-0002Lu-Qk; Sat, 31 Dec 2016 08:57:28 -0500 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:1157 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1cNKA4-00008V-3Q; Sat, 31 Dec 2016 08:57:28 -0500 Date: Sat, 31 Dec 2016 15:57:28 +0200 Message-Id: <83o9zsgq0n.fsf@gnu.org> From: Eli Zaretskii To: Jonas Bernoulli In-reply-to: <87eg0o2psh.fsf@bernoul.li> (message from Jonas Bernoulli on Sat, 31 Dec 2016 14:26:06 +0100) Subject: Re: bug#25308: Shorten long "ui-lines" in Custom buffers References: <87eg0o2psh.fsf@bernoul.li> 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-Spam-Score: -8.2 (--------) X-Debbugs-Envelope-To: 25308 Cc: 25308@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Eli Zaretskii Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -8.2 (--------) > From: Jonas Bernoulli > Date: Sat, 31 Dec 2016 14:26:06 +0100 > > Custom buffers contain two long lines, the first separating the initial > buttons from the options shown below, and the second is for symmetry, I > suppose. This is implemented in `custom-group-value-create'. > > These lines are 999 characters long. When point ends up on the "line > line", then it ends up at the *end* of that line, scrolling all content > except for the line itself off-window. This happens both with C-n/C-p, > as well as when using the mouse scroll wheel. The scrolling only happens for me if I set truncate-lines to a non-nil value. Is that what you see? Or perhaps you invoke Customize in a partial-width window, in which case truncate-partial-width-windows is non-nil by default? If lines are not truncated, there's no horizontal scrolling. > If that is considered to be too ugly, then I would suggest setting the > `:align-to' to be just long enough to reach the edge of the window (but > never longer) at the time `custom-group-value-create' is called, using > something like: > > (list 'space :align-to > `(+ (0 . right) > ,(min (window-hscroll) > (- (line-end-position) > (line-beginning-position))))) Does this really work when a window has its lines truncated? From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 29 13:55:26 2019 Received: (at 25308) by debbugs.gnu.org; 29 Sep 2019 17:55:26 +0000 Received: from localhost ([127.0.0.1]:55828 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iEdPq-0007XC-Jk for submit@debbugs.gnu.org; Sun, 29 Sep 2019 13:55:26 -0400 Received: from quimby.gnus.org ([80.91.231.51]:60036) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iEdPo-0007X4-Fg for 25308@debbugs.gnu.org; Sun, 29 Sep 2019 13:55:25 -0400 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=marnie) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1iEdPk-0004QN-7m; Sun, 29 Sep 2019 19:55:22 +0200 From: Lars Ingebrigtsen To: Eli Zaretskii Subject: Re: bug#25308: Shorten long "ui-lines" in Custom buffers References: <87eg0o2psh.fsf@bernoul.li> <83o9zsgq0n.fsf@gnu.org> Date: Sun, 29 Sep 2019 19:55:19 +0200 In-Reply-To: <83o9zsgq0n.fsf@gnu.org> (Eli Zaretskii's message of "Sat, 31 Dec 2016 15:57:28 +0200") Message-ID: <878sq7asxk.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Eli Zaretskii writes: >> Custom buffers contain two long lines, the first separating the initial >> buttons from the options shown below, and the second is for symmetry, I >> suppose. This is implemented in `custom-group-v [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 25308 Cc: Jonas Bernoulli , 25308@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Eli Zaretskii writes: >> Custom buffers contain two long lines, the first separating the initial >> buttons from the options shown below, and the second is for symmetry, I >> suppose. This is implemented in `custom-group-value-create'. >> >> These lines are 999 characters long. When point ends up on the "line >> line", then it ends up at the *end* of that line, scrolling all content >> except for the line itself off-window. This happens both with C-n/C-p, >> as well as when using the mouse scroll wheel. > > The scrolling only happens for me if I set truncate-lines to a non-nil > value. Is that what you see? Or perhaps you invoke Customize in a > partial-width window, in which case truncate-partial-width-windows is > non-nil by default? > > If lines are not truncated, there's no horizontal scrolling. I can't reproduce the error, either (without truncate-lines). But truncate-lines is not set in Customize buffers by default, so I don't really think this is a bug. However, I agree with Jonas that the lines aren't very pretty. The worst bit is perhaps that the make the little arrow in the right fringe appear... and they aren't symmetrical, since they use 'underline: They're very close to the text at the start, but far away from the final line of text. I'd rather just remove those lines completely -- I think that'd be less busy. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Sun Nov 03 08:13:18 2019 Received: (at 25308) by debbugs.gnu.org; 3 Nov 2019 13:13:18 +0000 Received: from localhost ([127.0.0.1]:33465 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iRFh0-0002eU-D7 for submit@debbugs.gnu.org; Sun, 03 Nov 2019 08:13:18 -0500 Received: from host.gofardesign.uk ([208.79.239.190]:49165) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iRFgx-0002eF-Tr for 25308@debbugs.gnu.org; Sun, 03 Nov 2019 08:13:16 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=marxist.se; s=default; h=Content-Type:MIME-Version:Message-ID:Date:References: In-Reply-To:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=600ujXrgsaOEcJJ3y5Iwv9QQenB4y1lNwuSF0y8XPa0=; b=Mlck98PbR7eM7N6kjeJDnv+z0O DFVAEXFYWethpAuV6Go/diir2Xe0wbcV2x/JwKyAW/9JF7D/+8jOsFfMXc1snIipCx4SF3rUZIF4a 2VBVT1OHtEWbWWcSI9fbwGOq1cAXQGKo3EHU22Uml94U5CZvd7wx/S366t9IoNkBxXEM=; Received: from h-70-69.a785.priv.bahnhof.se ([155.4.70.69]:60172 helo=localhost) by host.gofardesign.uk with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.92) (envelope-from ) id 1iRFgp-0000r4-73; Sun, 03 Nov 2019 07:13:07 -0600 From: Stefan Kangas To: Eli Zaretskii Subject: Re: bug#25308: Shorten long "ui-lines" in Custom buffers In-Reply-To: <83o9zsgq0n.fsf@gnu.org> (Eli Zaretskii's message of "Sat, 31 Dec 2016 15:57:28 +0200") References: <87eg0o2psh.fsf@bernoul.li> <83o9zsgq0n.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) Date: Sun, 03 Nov 2019 14:13:05 +0100 Message-ID: <87h83ldrxa.fsf@marxist.se> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-OutGoing-Spam-Status: No, score=-1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - host.gofardesign.uk X-AntiAbuse: Original Domain - debbugs.gnu.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - marxist.se X-Get-Message-Sender-Via: host.gofardesign.uk: authenticated_id: stefan@marxist.se X-Authenticated-Sender: host.gofardesign.uk: stefan@marxist.se X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 25308 Cc: Jonas Bernoulli , 25308@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --=-=-= Content-Type: text/plain Eli Zaretskii writes: >> From: Jonas Bernoulli >> Date: Sat, 31 Dec 2016 14:26:06 +0100 >> >> Custom buffers contain two long lines, the first separating the initial >> buttons from the options shown below, and the second is for symmetry, I >> suppose. This is implemented in `custom-group-value-create'. >> >> These lines are 999 characters long. When point ends up on the "line >> line", then it ends up at the *end* of that line, scrolling all content >> except for the line itself off-window. This happens both with C-n/C-p, >> as well as when using the mouse scroll wheel. > > The scrolling only happens for me if I set truncate-lines to a non-nil > value. Is that what you see? Or perhaps you invoke Customize in a > partial-width window, in which case truncate-partial-width-windows is > non-nil by default? > > If lines are not truncated, there's no horizontal scrolling. I see the same thing here. >> If that is considered to be too ugly, then I would suggest setting the >> `:align-to' to be just long enough to reach the edge of the window (but >> never longer) at the time `custom-group-value-create' is called, using >> something like: >> >> (list 'space :align-to >> `(+ (0 . right) >> ,(min (window-hscroll) >> (- (line-end-position) >> (line-beginning-position))))) > > Does this really work when a window has its lines truncated? Yes, it works on both text based and graphical displays. Please see the attached patch. Lars suggested to remove the lines entirely, but I think I prefer to not change that for now. Perhaps it would make more sense as part of a bigger overhaul of the look and feel of customize. Any comments? Best regards, Stefan Kangas --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-Handle-truncate-lines-in-customize-group.patch >From 432de377610215219ad9c61ad63950fd914eb883 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Sun, 3 Nov 2019 14:07:37 +0100 Subject: [PATCH] Handle truncate-lines in customize-group * lisp/cus-edit.el (custom-group--draw-horizontal-line): New function to draw horizontal lines which handles a non-nil value of 'truncate-lines'. (Bug#25308) (custom-group-value-create): Use it. Co-authored-by: Jonas Bernoulli --- lisp/cus-edit.el | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index b9fd3e0a2d..081d4c9213 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -4062,6 +4062,22 @@ custom-group-members (push entry members))) (nreverse members)))) +(defun custom-group--draw-horizontal-line () + "Draw a horizontal line at point. +This works for both graphical and text displays." + (let ((p (point))) + (insert "\n") + (put-text-property p (1+ p) 'face '(:underline t)) + (overlay-put (make-overlay p (1+ p)) + 'before-string + (propertize "\n" 'face '(:underline t) + 'display + (list 'space :align-to + `(+ (0 . right) + ,(min (window-hscroll) + (- (line-end-position) + (line-beginning-position))))))))) + (defun custom-group-value-create (widget) "Insert a customize group for WIDGET in the current buffer." (unless (eq (widget-get widget :custom-state) 'hidden) @@ -4188,15 +4204,7 @@ custom-group-value-create ;; Nested style. (t ;Visible. - ;; Draw a horizontal line (this works for both graphical - ;; and text displays): - (let ((p (point))) - (insert "\n") - (put-text-property p (1+ p) 'face '(:underline t)) - (overlay-put (make-overlay p (1+ p)) - 'before-string - (propertize "\n" 'face '(:underline t) - 'display '(space :align-to 999)))) + (custom-group--draw-horizontal-line) ;; Add parent groups references above the group. (when (eq level 1) @@ -4287,13 +4295,7 @@ custom-group-value-create (widget-put widget :children children) (custom-group-state-update widget)) ;; End line - (let ((p (1+ (point)))) - (insert "\n\n") - (put-text-property p (1+ p) 'face '(:underline t)) - (overlay-put (make-overlay p (1+ p)) - 'before-string - (propertize "\n" 'face '(:underline t) - 'display '(space :align-to 999)))))))) + (custom-group--draw-horizontal-line))))) (defvar custom-group-menu `(("Set for Current Session" custom-group-set -- 2.20.1 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sun Nov 03 09:34:59 2019 Received: (at 25308) by debbugs.gnu.org; 3 Nov 2019 14:34:59 +0000 Received: from localhost ([127.0.0.1]:33513 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iRGy3-0006nf-Az for submit@debbugs.gnu.org; Sun, 03 Nov 2019 09:34:59 -0500 Received: from quimby.gnus.org ([80.91.231.51]:43778) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iRGy1-0006nW-13 for 25308@debbugs.gnu.org; Sun, 03 Nov 2019 09:34:57 -0500 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=marnie) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1iRGxx-0006We-8i; Sun, 03 Nov 2019 15:34:55 +0100 From: Lars Ingebrigtsen To: Stefan Kangas Subject: Re: bug#25308: Shorten long "ui-lines" in Custom buffers References: <87eg0o2psh.fsf@bernoul.li> <83o9zsgq0n.fsf@gnu.org> <87h83ldrxa.fsf@marxist.se> Date: Sun, 03 Nov 2019 15:34:52 +0100 In-Reply-To: <87h83ldrxa.fsf@marxist.se> (Stefan Kangas's message of "Sun, 03 Nov 2019 14:13:05 +0100") Message-ID: <874kzlc9kj.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Stefan Kangas writes: > Yes, it works on both text based and graphical displays. Please see > the attached patch. > > Lars suggested to remove the lines entirely, but I think I prefer to > not change that for now. Perhaps [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 25308 Cc: Eli Zaretskii , Jonas Bernoulli , 25308@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Stefan Kangas writes: > Yes, it works on both text based and graphical displays. Please see > the attached patch. > > Lars suggested to remove the lines entirely, but I think I prefer to > not change that for now. Perhaps it would make more sense as part of > a bigger overhaul of the look and feel of customize. > > Any comments? I haven't tried the patch, but it looks good to me. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Sun Nov 03 10:48:22 2019 Received: (at 25308) by debbugs.gnu.org; 3 Nov 2019 15:48:22 +0000 Received: from localhost ([127.0.0.1]:34860 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iRI74-0006cX-HS for submit@debbugs.gnu.org; Sun, 03 Nov 2019 10:48:22 -0500 Received: from eggs.gnu.org ([209.51.188.92]:35661) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iRI72-0006cI-HQ for 25308@debbugs.gnu.org; Sun, 03 Nov 2019 10:48:21 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]:42305) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iRI6w-0001we-L4; Sun, 03 Nov 2019 10:48:14 -0500 Received: from [176.228.60.248] (port=4665 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iRI6w-0006IW-1m; Sun, 03 Nov 2019 10:48:14 -0500 Date: Sun, 03 Nov 2019 17:48:24 +0200 Message-Id: <83h83lhsfr.fsf@gnu.org> From: Eli Zaretskii To: Stefan Kangas In-reply-to: <87h83ldrxa.fsf@marxist.se> (message from Stefan Kangas on Sun, 03 Nov 2019 14:13:05 +0100) Subject: Re: bug#25308: Shorten long "ui-lines" in Custom buffers References: <87eg0o2psh.fsf@bernoul.li> <83o9zsgq0n.fsf@gnu.org> <87h83ldrxa.fsf@marxist.se> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 25308 Cc: jonas@bernoul.li, 25308@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > From: Stefan Kangas > Cc: Jonas Bernoulli , 25308@debbugs.gnu.org > Date: Sun, 03 Nov 2019 14:13:05 +0100 > > Yes, it works on both text based and graphical displays. Please see > the attached patch. > > Lars suggested to remove the lines entirely, but I think I prefer to > not change that for now. Perhaps it would make more sense as part of > a bigger overhaul of the look and feel of customize. > > Any comments? If your patch works, I have no comments. From debbugs-submit-bounces@debbugs.gnu.org Sun Nov 03 11:48:34 2019 Received: (at 25308) by debbugs.gnu.org; 3 Nov 2019 16:48:34 +0000 Received: from localhost ([127.0.0.1]:34981 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iRJ3I-0001wQ-K7 for submit@debbugs.gnu.org; Sun, 03 Nov 2019 11:48:34 -0500 Received: from host.gofardesign.uk ([208.79.239.190]:43128) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iRJ3G-0001w9-F3; Sun, 03 Nov 2019 11:48:30 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=marxist.se; s=default; h=Content-Type:MIME-Version:Message-ID:Date:References: In-Reply-To:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=MeavzMYD2LBO09xns4RxJZOgD4tlwcLdkxOxw4xxOsg=; b=cnYPlE2UwIiaYox9PeoAyHkyLo iHsuYmeB6RPnvLv1CgWhqY5eQG1NFP0Vh+nl65mXRCb6OEwsr/ITOvzppuNrT99OTvX3NOEsqMRPl aQels/d6mxRgXByKeP3cIHI/P4u2dasrTXbttuku2iJgVwyFsAUpuGfxrtcYHBEdvxA8=; Received: from h-70-69.a785.priv.bahnhof.se ([155.4.70.69]:40834 helo=localhost) by host.gofardesign.uk with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.92) (envelope-from ) id 1iRJ39-0007Sa-U5; Sun, 03 Nov 2019 10:48:24 -0600 From: Stefan Kangas To: Eli Zaretskii Subject: Re: bug#25308: Shorten long "ui-lines" in Custom buffers In-Reply-To: <83h83lhsfr.fsf@gnu.org> (Eli Zaretskii's message of "Sun, 03 Nov 2019 17:48:24 +0200") References: <87eg0o2psh.fsf@bernoul.li> <83o9zsgq0n.fsf@gnu.org> <87h83ldrxa.fsf@marxist.se> <83h83lhsfr.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) Date: Sun, 03 Nov 2019 17:48:20 +0100 Message-ID: <878sowewiz.fsf@marxist.se> MIME-Version: 1.0 Content-Type: text/plain X-OutGoing-Spam-Status: No, score=-1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - host.gofardesign.uk X-AntiAbuse: Original Domain - debbugs.gnu.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - marxist.se X-Get-Message-Sender-Via: host.gofardesign.uk: authenticated_id: stefan@marxist.se X-Authenticated-Sender: host.gofardesign.uk: stefan@marxist.se X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 25308 Cc: jonas@bernoul.li, 25308@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) close 25308 27.1 thanks Eli Zaretskii writes: >> From: Stefan Kangas >> Cc: Jonas Bernoulli , 25308@debbugs.gnu.org >> Date: Sun, 03 Nov 2019 14:13:05 +0100 >> >> Yes, it works on both text based and graphical displays. Please see >> the attached patch. >> >> Lars suggested to remove the lines entirely, but I think I prefer to >> not change that for now. Perhaps it would make more sense as part of >> a bigger overhaul of the look and feel of customize. >> >> Any comments? > > If your patch works, I have no comments. Thanks. Now pushed to master as commit 84a3793b19. Best regards, Stefan Kangas From debbugs-submit-bounces@debbugs.gnu.org Mon Nov 04 08:21:15 2019 Received: (at 25308) by debbugs.gnu.org; 4 Nov 2019 13:21:16 +0000 Received: from localhost ([127.0.0.1]:35989 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iRcIF-0004TC-G4 for submit@debbugs.gnu.org; Mon, 04 Nov 2019 08:21:15 -0500 Received: from mail.hostpark.net ([212.243.197.30]:58136) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iRcIA-0004Sz-E1 for 25308@debbugs.gnu.org; Mon, 04 Nov 2019 08:21:13 -0500 Received: from localhost (localhost [127.0.0.1]) by mail.hostpark.net (Postfix) with ESMTP id 2063E165F1 for <25308@debbugs.gnu.org>; Mon, 4 Nov 2019 14:21:07 +0100 (CET) X-Virus-Scanned: by Hostpark/NetZone Mailprotection at hostpark.net Received: from mail.hostpark.net ([127.0.0.1]) by localhost (mail0.hostpark.net [127.0.0.1]) (amavisd-new, port 10124) with ESMTP id 6rcvGoBkc4MD for <25308@debbugs.gnu.org>; Mon, 4 Nov 2019 14:21:06 +0100 (CET) Received: from customer (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.hostpark.net (Postfix) with ESMTPSA id 9ED3216C32 for <25308@debbugs.gnu.org>; Mon, 4 Nov 2019 14:21:06 +0100 (CET) References: <878sowewiz.fsf@marxist.se> <87eg0o2psh.fsf@bernoul.li> User-agent: mu4e 1.1.0; emacs 27.0.50 From: Jonas Bernoulli To: 25308@debbugs.gnu.org Subject: Re: bug#25308 acknowledged by developer (Re: bug#25308: Shorten long "ui-lines" in Custom buffers) In-reply-to: Date: Mon, 04 Nov 2019 14:21:06 +0100 Message-ID: <875zjzsrp9.fsf@bernoul.li> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 25308 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Thanks! GNU bug Tracking System writes: > This is an automatic notification regarding your bug report > #25308: Shorten long "ui-lines" in Custom buffers, > which was filed against the emacs package. > > Thank you for your report, which has now been closed. > You can view the full report at > http://debbugs.gnu.org/cgi/bugreport.cgi?bug=25308 > > If you require further information, please followup to 25308@debbugs.gnu.org. > > debbugs.gnu.org maintainers > (administrator, GNU bugs database) From unknown Thu Aug 14 21:22:52 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 03 Dec 2019 12:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator