From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Juri Linkov Newsgroups: gmane.emacs.bugs Subject: bug#70832: 30.0.50; repunctuate-sentences should respect sentence-end-double-space Date: Sun, 12 May 2024 09:58:05 +0300 Organization: LINKOV.NET Message-ID: <86bk5bzf85.fsf@mail.linkov.net> References: <86eda83d12.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="7634"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/30.0.50 (x86_64-pc-linux-gnu) Cc: Geoffrey Teale , 70832@debbugs.gnu.org To: Eli Zaretskii Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Sun May 12 09:07:12 2024 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1s63Id-0001pB-UN for geb-bug-gnu-emacs@m.gmane-mx.org; Sun, 12 May 2024 09:07:11 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1s63IX-00020X-8W; Sun, 12 May 2024 03:07:05 -0400 Original-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 1s63IU-0001yA-Bq for bug-gnu-emacs@gnu.org; Sun, 12 May 2024 03:07:02 -0400 Original-Received: from debbugs.gnu.org ([2001:470:142:5::43]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1s63IU-00034c-2o for bug-gnu-emacs@gnu.org; Sun, 12 May 2024 03:07:02 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1s63IT-0004Bm-PF for bug-gnu-emacs@gnu.org; Sun, 12 May 2024 03:07:01 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Juri Linkov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sun, 12 May 2024 07:07:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 70832 X-GNU-PR-Package: emacs Original-Received: via spool by 70832-submit@debbugs.gnu.org id=B70832.171549758316095 (code B ref 70832); Sun, 12 May 2024 07:07:01 +0000 Original-Received: (at 70832) by debbugs.gnu.org; 12 May 2024 07:06:23 +0000 Original-Received: from localhost ([127.0.0.1]:52838 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1s63Hq-0004BS-JZ for submit@debbugs.gnu.org; Sun, 12 May 2024 03:06:22 -0400 Original-Received: from relay6-d.mail.gandi.net ([217.70.183.198]:36843) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1s63Hn-0004BD-DS for 70832@debbugs.gnu.org; Sun, 12 May 2024 03:06:19 -0400 Original-Received: by mail.gandi.net (Postfix) with ESMTPSA id C141CC0003; Sun, 12 May 2024 07:05:52 +0000 (UTC) In-Reply-To: <86eda83d12.fsf@gnu.org> (Eli Zaretskii's message of "Sat, 11 May 2024 12:37:13 +0300") X-GND-Sasl: juri@linkov.net X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.bugs:284897 Archived-At: >> In paragraphs.el there is a variable 'sentence-end-doulbe-space` that indicates where we should expect >> sentences to end with one or two spaces after a period. In the same file a command is provided called >> "repunctuate-sentences", which steadfastly ignores the value of this variable and expands all single-space >> endings to two-space endings. >> >> It strikes me that the naming of this command does not imply that it will insist on two-spaces (even if the docs >> say so), and it would be more sensible and offer more utility for it to respect the users wishes. As the variable >> default to `t, changing this function would have zero impact on the default behaviour. > > Patches to allow repunctuate-sentences heed the value of > sentence-end-double-space are welcome. The purpose of repunctuate-sentences is to put two spaces at the end of sentences. What should it do when sentence-end-double-space is nil?