From unknown Sat Aug 16 22:48:22 2025 X-Loop: help-debbugs@gnu.org Subject: bug#66716: Reconcile display-fill-column-indicator-character behavior and customization description Resent-From: Joseph Turner Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 23 Oct 2023 21:30:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 66716 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: 66716@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.169809654318947 (code B ref -1); Mon, 23 Oct 2023 21:30:02 +0000 Received: (at submit) by debbugs.gnu.org; 23 Oct 2023 21:29:03 +0000 Received: from localhost ([127.0.0.1]:52047 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qv2Tv-0004vX-2r for submit@debbugs.gnu.org; Mon, 23 Oct 2023 17:29:03 -0400 Received: from lists.gnu.org ([2001:470:142::17]:45878) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qv2Tr-0004v2-36 for submit@debbugs.gnu.org; Mon, 23 Oct 2023 17:29:02 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qv2TI-0003Ir-Hh for bug-gnu-emacs@gnu.org; Mon, 23 Oct 2023 17:28:24 -0400 Received: from out-205.mta0.migadu.com ([91.218.175.205]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qv2TE-0001wN-7u for bug-gnu-emacs@gnu.org; Mon, 23 Oct 2023 17:28:24 -0400 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=breatheoutbreathe.in; s=key1; t=1698096493; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=Bmyqmzvu9vQr5b6WU66Nvf+jPh5xsGhj9p4f0yq+/+4=; b=Qz0DH5rX4QciJW5sLgfC+w/DAiK3XOG/O20w5lupMOY4fB60zhyrLqyGIJy+DDip0/0z8U xuLnxwxKUwQsMg8w65ai4cuWzlC+flpTTVvrjzuKP/qyRlkIW69yk7JJa0ZSGG7VYOCwuF WbzPDMLgSami4f9ds/uL4+SCgYSYfkk= From: Joseph Turner Date: Mon, 23 Oct 2023 14:23:06 -0700 Message-ID: <87fs21111z.fsf@breatheoutbreathe.in> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Migadu-Flow: FLOW_OUT Received-SPF: pass client-ip=91.218.175.205; envelope-from=joseph@breatheoutbreathe.in; helo=out-205.mta0.migadu.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) 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: -0.1 (/) --=-=-= Content-Type: text/plain Tags: patch Tags: patch Tags: patch AFAICT, setting display-fill-column-indicator-character to nil means that no fill indicator is displayed. This patch changes the customization description to match the current behavior. However, I like the behavior that's currently described in the customization option: "If possible, use U+2502 to indicate fill column, otherwise use |" What do folks think about changing the behavior of display-fill-column-indicator-character to match this description? Thank you!! Joseph --=-=-= Content-Type: text/patch; charset=utf-8 Content-Disposition: attachment; filename=0001-Fix-customization-description-display-fill-column-in.patch Content-Transfer-Encoding: quoted-printable >From 846252d0c3912623ba2d8ff9832e00dfa00fc091 Mon Sep 17 00:00:00 2001 From: Joseph Turner Date: Mon, 23 Oct 2023 14:20:09 -0700 Subject: [PATCH] Fix customization description: display-fill-column-indicator-character * lisp/cus-start.el (standard): Change the description of the nil value to its current behavior: to not display a fill indicator. --- lisp/cus-start.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/cus-start.el b/lisp/cus-start.el index 054683d7cf6..2fc5d3d727c 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el @@ -806,7 +806,7 @@ since it could result in memory overflow and make Emacs= crash." :value ?=E2=94=82) (character :tag "Use | to indicate fill column" :value ?|) - (const :tag "If possible, use U+2502 to indicate fill colum= n, otherwise use |" + (const :tag "Do not indicate fill column" :value nil) character) "27.1" --=20 2.41.0 --=-=-=-- From unknown Sat Aug 16 22:48:22 2025 X-Loop: help-debbugs@gnu.org Subject: bug#66716: Reconcile display-fill-column-indicator-character behavior and customization description Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 24 Oct 2023 12:32:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 66716 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Joseph Turner Cc: 66716@debbugs.gnu.org Received: via spool by 66716-submit@debbugs.gnu.org id=B66716.169815071614666 (code B ref 66716); Tue, 24 Oct 2023 12:32:02 +0000 Received: (at 66716) by debbugs.gnu.org; 24 Oct 2023 12:31:56 +0000 Received: from localhost ([127.0.0.1]:53379 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qvGZf-0003oU-LS for submit@debbugs.gnu.org; Tue, 24 Oct 2023 08:31:55 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:59754) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qvGZd-0003o9-34 for 66716@debbugs.gnu.org; Tue, 24 Oct 2023 08:31:54 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qvGZ3-0007eP-Ni; Tue, 24 Oct 2023 08:31:17 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=WUVZlalkcM+Cn3aGFjUMnQ36xyA5LMB+GTGfdhcsMnw=; b=mA85+ENikpWB 49wMRKm4o8KWSli1j2yesbenb7Psr3rypE/u8T1xUSY0ea+5KUO6yD3LddHupmVxd/dFU4Xa3GJFy TN2UW2aADS14i9wx95iQuf0BfbmpSn24IzyJR4LNPsQX9wfXIuaJEjI1+XGvqhi6shI0cu+ov8A2R gGw2CEC2Ry18/lChvgtRVE8GI7Di7U/Gv1i6jP6niadcvYjYd4qBMEaI+3WV4atL/J0gQ4NTm4wJA M4/K6aKdREUphowjcDWkj5LlJhE7v499ycyyWJY11wjJ6VBjkVjNUsn600+Rx9uDRk3mHpGKsK/et LTLIY9Ofn31cJPkGAhzNLw==; Date: Tue, 24 Oct 2023 15:31:21 +0300 Message-Id: <83wmvckxra.fsf@gnu.org> From: Eli Zaretskii In-Reply-To: <87fs21111z.fsf@breatheoutbreathe.in> (bug-gnu-emacs@gnu.org) References: <87fs21111z.fsf@breatheoutbreathe.in> X-Spam-Score: -2.3 (--) 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 (---) > Date: Mon, 23 Oct 2023 14:23:06 -0700 > From: Joseph Turner via "Bug reports for GNU Emacs, > the Swiss army knife of text editors" > > AFAICT, setting display-fill-column-indicator-character to nil means > that no fill indicator is displayed. That's not true, AFAICT. The default value is nil, but when you turn on the mode, it modifies the value of the character to be either U+2502 or '|'. > This patch changes the customization description to match the > current behavior. I don't think the patch is correct. > However, I like the behavior that's currently described in the > customization option: > > "If possible, use U+2502 to indicate fill column, otherwise use |" > > What do folks think about changing the behavior of > display-fill-column-indicator-character to match this description? I don't understand the proposal. We don't use U+2502 by default because not all terminals support it. From unknown Sat Aug 16 22:48:22 2025 X-Loop: help-debbugs@gnu.org Subject: bug#66716: Reconcile display-fill-column-indicator-character behavior and customization description Resent-From: Joseph Turner Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 24 Oct 2023 20:01:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 66716 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Eli Zaretskii Cc: 66716@debbugs.gnu.org Received: via spool by 66716-submit@debbugs.gnu.org id=B66716.169817762921251 (code B ref 66716); Tue, 24 Oct 2023 20:01:01 +0000 Received: (at 66716) by debbugs.gnu.org; 24 Oct 2023 20:00:29 +0000 Received: from localhost ([127.0.0.1]:56761 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qvNZk-0005Wg-Qm for submit@debbugs.gnu.org; Tue, 24 Oct 2023 16:00:29 -0400 Received: from out-198.mta1.migadu.com ([95.215.58.198]:24341) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qvNZf-0005WV-QX for 66716@debbugs.gnu.org; Tue, 24 Oct 2023 16:00:27 -0400 References: <87fs21111z.fsf@breatheoutbreathe.in> <83wmvckxra.fsf@gnu.org> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=breatheoutbreathe.in; s=key1; t=1698177592; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=8qe9qOnZod9V5GcHjjROf1rKZFpImPtkZrmZo6YcpY4=; b=M03MRG2C6yx7z9jwO3zt+bTf4vE8n7TB+mcVUt6pcTu+8bTXMcvCH05nKNO2wJ2VQbPEQA ZYd1ES+Tdkqu5GaqCE3osMDbBgVvgBoaW7AvM9kL56VyYy0ThnlZ6xtUTRdN9CZVdm86HQ 6h8DDv3R1+wjZnEeCNTtvYyo6iw+KwQ= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Joseph Turner Date: Tue, 24 Oct 2023 12:46:11 -0700 In-reply-to: <83wmvckxra.fsf@gnu.org> Message-ID: <878r7r4wqy.fsf@breatheoutbreathe.in> MIME-Version: 1.0 Content-Type: text/plain X-Migadu-Flow: FLOW_OUT X-Spam-Score: 0.0 (/) 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: >> Date: Mon, 23 Oct 2023 14:23:06 -0700 >> From: Joseph Turner via "Bug reports for GNU Emacs, >> the Swiss army knife of text editors" >> >> AFAICT, setting display-fill-column-indicator-character to nil means >> that no fill indicator is displayed. > > That's not true, AFAICT. The default value is nil, but when you turn > on the mode, it modifies the value of the character to be either > U+2502 or '|'. > >> This patch changes the customization description to match the >> current behavior. > > I don't think the patch is correct. Indeed, the patch is incorrect. I misunderstood the behavior of display-fill-column-indicator-mode when display-fill-column-indicator-character is nil. >> However, I like the behavior that's currently described in the >> customization option: >> >> "If possible, use U+2502 to indicate fill column, otherwise use |" >> >> What do folks think about changing the behavior of >> display-fill-column-indicator-character to match this description? > > I don't understand the proposal. We don't use U+2502 by default > because not all terminals support it. When enabling display-fill-column-indicator in .dir-locals.el, is it possible to dynamically set display-fill-column-indicator-character according to what characters are displayable without using eval? Currently in my project, I have: ((emacs-lisp-mode . ((display-fill-column-indicator . t) ;; This won't work on some terminals (display-fill-column-indicator-character . ?\u2502) (fill-column . 80)))) Please let me know if you have suggestions for improvement! Thank you!!! Joseph From unknown Sat Aug 16 22:48:22 2025 X-Loop: help-debbugs@gnu.org Subject: bug#66716: Reconcile display-fill-column-indicator-character behavior and customization description Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Wed, 25 Oct 2023 02:30:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 66716 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Joseph Turner Cc: 66716@debbugs.gnu.org Received: via spool by 66716-submit@debbugs.gnu.org id=B66716.169820097829485 (code B ref 66716); Wed, 25 Oct 2023 02:30:02 +0000 Received: (at 66716) by debbugs.gnu.org; 25 Oct 2023 02:29:38 +0000 Received: from localhost ([127.0.0.1]:56993 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qvTeL-0007fT-V9 for submit@debbugs.gnu.org; Tue, 24 Oct 2023 22:29:38 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:34684) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qvTeJ-0007fD-0Y for 66716@debbugs.gnu.org; Tue, 24 Oct 2023 22:29:35 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qvTdj-0004Lr-IN; Tue, 24 Oct 2023 22:28:59 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=eGlekjAQSlgXc1sMwjTUXk8mxbKJk0cNwrmDNusbj58=; b=L2bhe9bHLUHM cEwjKWseDSuibZY9NEm1wolUmziNYU7UjtfceBvdF106AG5pbU3dEE8kP1yUCxwyJ99UtMIzu6e9T Ec5zlG/+0DG/2Bzq5q7FsohHNyoI68ZkAUnwvNnW2UdCgxIUWXDLK/t/veQdQAgT3nNwuh9lrBfwe GkY/yaDhsn7FyC6RFByxRR/bnr78XdH3Tdft6gLEhm/mpMv0U/IiZ9Q+i9arL2Nf53upWSGHw4zW0 sU57OZwOrenPzlD39V7Z1CLT/W4lMFIF/Rur8gIbjo5xv+yy40XZV1ykz3lW1Fo+efB78Cp9SqbwA B4Rkj/1YrJu5s+XRv8FMxw==; Date: Wed, 25 Oct 2023 05:29:06 +0300 Message-Id: <83wmvbjuz1.fsf@gnu.org> From: Eli Zaretskii In-Reply-To: <878r7r4wqy.fsf@breatheoutbreathe.in> (message from Joseph Turner on Tue, 24 Oct 2023 12:46:11 -0700) References: <87fs21111z.fsf@breatheoutbreathe.in> <83wmvckxra.fsf@gnu.org> <878r7r4wqy.fsf@breatheoutbreathe.in> X-Spam-Score: -2.3 (--) 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: Joseph Turner > Cc: 66716@debbugs.gnu.org > Date: Tue, 24 Oct 2023 12:46:11 -0700 > > >> What do folks think about changing the behavior of > >> display-fill-column-indicator-character to match this description? > > > > I don't understand the proposal. We don't use U+2502 by default > > because not all terminals support it. > > When enabling display-fill-column-indicator in .dir-locals.el, is it > possible to dynamically set display-fill-column-indicator-character > according to what characters are displayable without using eval? I don't think so. From unknown Sat Aug 16 22:48:22 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Joseph Turner Subject: bug#66716: closed (Re: bug#66716: Reconcile display-fill-column-indicator-character behavior and customization description) Message-ID: References: <87r0lj2y62.fsf@breatheoutbreathe.in> <87fs21111z.fsf@breatheoutbreathe.in> X-Gnu-PR-Message: they-closed 66716 X-Gnu-PR-Package: emacs X-Gnu-PR-Keywords: patch Reply-To: 66716@debbugs.gnu.org Date: Wed, 25 Oct 2023 03:13:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1698203582-1540-1" This is a multi-part message in MIME format... ------------=_1698203582-1540-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #66716: Reconcile display-fill-column-indicator-character behavior and cust= omization description which was filed against the emacs package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 66716@debbugs.gnu.org. --=20 66716: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D66716 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1698203582-1540-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 66716-done) by debbugs.gnu.org; 25 Oct 2023 03:12:46 +0000 Received: from localhost ([127.0.0.1]:57031 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qvUK6-0000OH-G6 for submit@debbugs.gnu.org; Tue, 24 Oct 2023 23:12:46 -0400 Received: from out-195.mta0.migadu.com ([91.218.175.195]:53194) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qvUK2-0000O7-W6 for 66716-done@debbugs.gnu.org; Tue, 24 Oct 2023 23:12:45 -0400 References: <87fs21111z.fsf@breatheoutbreathe.in> <83wmvckxra.fsf@gnu.org> <878r7r4wqy.fsf@breatheoutbreathe.in> <83wmvbjuz1.fsf@gnu.org> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=breatheoutbreathe.in; s=key1; t=1698203530; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=6wtVv5i5N4qJ7iVMlyZq6MrAiKIf9gfB+lI0H9Y66QU=; b=DsLJNN76UpSpDFMfwkdhXawK/puXpQnQvJrRVsla35gFPTNSiG+09vIc6p+5Y217qL0kG1 I0oqDfWG8U+Qj/zh23653+4+g79HrKjwpOxlilMO0XAB9GjvMl/GzYVI8X/kG0k3Ticp3i N45/rTLaTRfb9JhQRPI4rWe30BndFTs= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Joseph Turner To: Eli Zaretskii Subject: Re: bug#66716: Reconcile display-fill-column-indicator-character behavior and customization description Date: Tue, 24 Oct 2023 20:11:53 -0700 In-reply-to: <83wmvbjuz1.fsf@gnu.org> Message-ID: <87r0lj2y62.fsf@breatheoutbreathe.in> MIME-Version: 1.0 Content-Type: text/plain X-Migadu-Flow: FLOW_OUT X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 66716-done Cc: 66716-done@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: >> From: Joseph Turner >> Cc: 66716@debbugs.gnu.org >> Date: Tue, 24 Oct 2023 12:46:11 -0700 >> >> >> What do folks think about changing the behavior of >> >> display-fill-column-indicator-character to match this description? >> > >> > I don't understand the proposal. We don't use U+2502 by default >> > because not all terminals support it. >> >> When enabling display-fill-column-indicator in .dir-locals.el, is it >> possible to dynamically set display-fill-column-indicator-character >> according to what characters are displayable without using eval? > > I don't think so. Thank you!! ------------=_1698203582-1540-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 23 Oct 2023 21:29:03 +0000 Received: from localhost ([127.0.0.1]:52047 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qv2Tv-0004vX-2r for submit@debbugs.gnu.org; Mon, 23 Oct 2023 17:29:03 -0400 Received: from lists.gnu.org ([2001:470:142::17]:45878) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qv2Tr-0004v2-36 for submit@debbugs.gnu.org; Mon, 23 Oct 2023 17:29:02 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qv2TI-0003Ir-Hh for bug-gnu-emacs@gnu.org; Mon, 23 Oct 2023 17:28:24 -0400 Received: from out-205.mta0.migadu.com ([91.218.175.205]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qv2TE-0001wN-7u for bug-gnu-emacs@gnu.org; Mon, 23 Oct 2023 17:28:24 -0400 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=breatheoutbreathe.in; s=key1; t=1698096493; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=Bmyqmzvu9vQr5b6WU66Nvf+jPh5xsGhj9p4f0yq+/+4=; b=Qz0DH5rX4QciJW5sLgfC+w/DAiK3XOG/O20w5lupMOY4fB60zhyrLqyGIJy+DDip0/0z8U xuLnxwxKUwQsMg8w65ai4cuWzlC+flpTTVvrjzuKP/qyRlkIW69yk7JJa0ZSGG7VYOCwuF WbzPDMLgSami4f9ds/uL4+SCgYSYfkk= From: Joseph Turner To: bug-gnu-emacs@gnu.org Subject: Reconcile display-fill-column-indicator-character behavior and customization description Date: Mon, 23 Oct 2023 14:23:06 -0700 Message-ID: <87fs21111z.fsf@breatheoutbreathe.in> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Migadu-Flow: FLOW_OUT Received-SPF: pass client-ip=91.218.175.205; envelope-from=joseph@breatheoutbreathe.in; helo=out-205.mta0.migadu.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) 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: -0.1 (/) --=-=-= Content-Type: text/plain Tags: patch Tags: patch Tags: patch AFAICT, setting display-fill-column-indicator-character to nil means that no fill indicator is displayed. This patch changes the customization description to match the current behavior. However, I like the behavior that's currently described in the customization option: "If possible, use U+2502 to indicate fill column, otherwise use |" What do folks think about changing the behavior of display-fill-column-indicator-character to match this description? Thank you!! Joseph --=-=-= Content-Type: text/patch; charset=utf-8 Content-Disposition: attachment; filename=0001-Fix-customization-description-display-fill-column-in.patch Content-Transfer-Encoding: quoted-printable >From 846252d0c3912623ba2d8ff9832e00dfa00fc091 Mon Sep 17 00:00:00 2001 From: Joseph Turner Date: Mon, 23 Oct 2023 14:20:09 -0700 Subject: [PATCH] Fix customization description: display-fill-column-indicator-character * lisp/cus-start.el (standard): Change the description of the nil value to its current behavior: to not display a fill indicator. --- lisp/cus-start.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/cus-start.el b/lisp/cus-start.el index 054683d7cf6..2fc5d3d727c 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el @@ -806,7 +806,7 @@ since it could result in memory overflow and make Emacs= crash." :value ?=E2=94=82) (character :tag "Use | to indicate fill column" :value ?|) - (const :tag "If possible, use U+2502 to indicate fill colum= n, otherwise use |" + (const :tag "Do not indicate fill column" :value nil) character) "27.1" --=20 2.41.0 --=-=-=-- ------------=_1698203582-1540-1--