From unknown Fri Jun 20 07:11:58 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#3234 <3234@debbugs.gnu.org> To: bug#3234 <3234@debbugs.gnu.org> Subject: Status: fill-column+1 problem Reply-To: bug#3234 <3234@debbugs.gnu.org> Date: Fri, 20 Jun 2025 14:11:58 +0000 retitle 3234 fill-column+1 problem reassign 3234 emacs submitter 3234 Toru TSUNEYOSHI severity 3234 normal tag 3234 patch thanks From t_tuneyosi@hotmail.com Thu May 7 04:00:33 2009 Received: (at submit) by emacsbugs.donarmstrong.com; 7 May 2009 11:00:33 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=0.1 required=4.0 tests=AWL,MURPHY_DRUGS_REL8,NUMONLY autolearn=no version=3.2.5-bugs.debian.org_2005_01_02 Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id n47B0SvQ012888 for ; Thu, 7 May 2009 04:00:29 -0700 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1M21L2-00005f-8f for bug-gnu-emacs@gnu.org; Thu, 07 May 2009 07:00:28 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1M21Kx-00004q-54 for bug-gnu-emacs@gnu.org; Thu, 07 May 2009 07:00:27 -0400 Received: from [199.232.76.173] (port=35941 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M21Kw-0008WT-VD for bug-gnu-emacs@gnu.org; Thu, 07 May 2009 07:00:22 -0400 Received: from blu0-omc1-s22.blu0.hotmail.com ([65.55.116.33]:39837) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1M21Kw-0008GL-5Y for bug-gnu-emacs@gnu.org; Thu, 07 May 2009 07:00:22 -0400 Received: from BLU0-SMTP45 ([65.55.116.7]) by blu0-omc1-s22.blu0.hotmail.com with Microsoft SMTPSVC(6.0.3790.3959); Thu, 7 May 2009 04:00:21 -0700 X-Originating-IP: [124.155.30.210] X-Originating-Email: [t_tuneyosi@hotmail.com] Message-ID: Received: from localhost ([124.155.30.210]) by BLU0-SMTP45.blu0.hotmail.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.2668); Thu, 7 May 2009 04:00:20 -0700 Date: Thu, 07 May 2009 20:00:08 +0900 (JST) To: bug-gnu-emacs@gnu.org Subject: fill-column+1 problem From: Toru TSUNEYOSHI X-Mailer: Mew version 6.1 on Emacs 22.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=iso-2022-jp Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 07 May 2009 11:00:21.0148 (UTC) FILETIME=[03BF25C0:01C9CF03] X-detected-operating-system: by monty-python.gnu.org: Windows 2000 SP4, XP SP1+ Hi. I met a problem about `fill-region-as-paragraph' on Emacs 22.3.1. (This problem happens on Emacs 23.0.93.1, because there is no change of the function's code.) Please read the following. condition: fill-column => 10 >>> example 1 (no problems) >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 12345678901234567890 あいうえおかきくけこ <- fill-region (this function is a caller of `fill-region-as-paragraph') => あいうえお かきくけこ <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< >>> example 2 (no good) >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 123456789012345678901 あいxうえおかきくけこ <- fill-region => あいxうえお <- fill-column+1 problem かきくけこ <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< >>> patch for the problem >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> --- fill.el.original 2008-08-27 00:45:42.000000000 +0900 +++ fill.el 2009-05-07 18:29:16.931120600 +0900 @@ -713,7 +713,8 @@ (move-to-column (current-fill-column)) (if (when (< (point) to) ;; Find the position where we'll break the line. - (forward-char 1) ;Use an immediately following space, if any. + (unless (> (current-column) (current-fill-column)) + (forward-char 1)) ;Use an immediately following space, if any. (fill-move-to-break-point linebeg) ;; Check again to see if we got to the end of ;; the paragraph. <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< >>> example 3 (after patching, good) >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 123456789012345678901 あいxうえおかきくけこ <- fill-region => あいxうえ <- no problem おかきくけ こ <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< Anyone can check the validity of the patch? If invalid, I wish that someone solves the problem. From rgm@gnu.org Wed Jun 17 00:29:42 2009 Received: (at control) by emacsbugs.donarmstrong.com; 17 Jun 2009 07:29:42 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-4.0 required=4.0 tests=AWL,VALID_BTS_CONTROL autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n5H7TcQa018381 for ; Wed, 17 Jun 2009 00:29:39 -0700 Received: from rgm by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1MGpaT-00005k-JR; Wed, 17 Jun 2009 03:29:37 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <19000.39777.414084.568239@fencepost.gnu.org> Date: Wed, 17 Jun 2009 03:29:37 -0400 From: Glenn Morris To: control Subject: control message Sender: Glenn Morris tags 3196 moreinfo unreproducible reassign 3221 emacs,ns reassign 3256 emacs,ns tags 3264 moreinfo reassign 3269 emacs,cc-mode close 3269 reassign 3281 emacs,w32 tags 3291 moreinfo severity 3310 minor close 3319 severity 3327 minor tags 3330 moreinfo unreproducible reassign 3331 emacs,ns close 3331 reassign 3351 emacs,ns severity 3350 minor reassign 3397 emacs,ns severity 3425 wishlist close 3448 reassign 3459 emacs,ns severity 3462 wishlist tags 3467 wontfix reassign 3500 emacs,ns merge 3234 3483 severity 3540 wishlist reassign 3452 emacs,w32 severity 3577 minor reassign 3581 emacs,ns reassign 3583 emacs,ns merge 3588 3593 reassign 3588 emacs,ns reassign 3589 emacs,ns reassign 3478 emacs22,w32 close 3146 From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 16 17:05:43 2011 Received: (at control) by debbugs.gnu.org; 16 Sep 2011 21:05:43 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R4fbQ-0004jZ-Pg for submit@debbugs.gnu.org; Fri, 16 Sep 2011 17:05:42 -0400 Received: from hermes.netfonds.no ([80.91.224.195]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R4fbM-0004jM-St for control@debbugs.gnu.org; Fri, 16 Sep 2011 17:05:38 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1R4fWe-0006xf-7z for control@debbugs.gnu.org; Fri, 16 Sep 2011 23:00:44 +0200 Date: Fri, 16 Sep 2011 22:57:26 +0200 Message-Id: To: control@debbugs.gnu.org From: Lars Magne Ingebrigtsen Subject: control message for bug #3234 X-MailScanner-ID: 1R4fWe-0006xf-7z X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1316811644.48415@XrGTq8xwNMaW6qFieEbkTQ X-Spam-Status: No X-Spam-Score: -2.7 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.7 (--) tags 3234 patch From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 30 02:13:53 2012 Received: (at 3234-done) by debbugs.gnu.org; 30 Nov 2012 07:13:53 +0000 Received: from localhost ([127.0.0.1]:45989 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TeKnI-0002iu-Cf for submit@debbugs.gnu.org; Fri, 30 Nov 2012 02:13:52 -0500 Received: from mail-pb0-f44.google.com ([209.85.160.44]:53991) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TeKnE-0002ik-O9 for 3234-done@debbugs.gnu.org; Fri, 30 Nov 2012 02:13:50 -0500 Received: by mail-pb0-f44.google.com with SMTP id uo1so233776pbc.3 for <3234-done@debbugs.gnu.org>; Thu, 29 Nov 2012 23:11:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=e0003bIVohFRnWc1WSMZas+tdEeE71yTW0ch1V7iegA=; b=Q1gWOED/1Xq5M7ZjveV94yNdzY1kBEOzET3HV0op6seXSuVuMIIrk+KhywgxNauDGu W5B1ALOfrTfPzRqH3JdEEDO8KJVvyK11JYYVo/x88zsOzaWn6u0yVWk6DvByrxvQGtsK Uaq+fAQq+qwo15VV3Jud+O/kwMaLvkEDD0DJC/qx8WWF7Vkhwqo3ZoHTxBxFTJDl6idB 77q9GDHjVaYsZ/K2DDGbWlPaHTWJl6RQDMv0ITurap6iNv79ruj3cRHOzVb4XTn7sRcK m1h1xV/i+nJaY+7SwM6kI4wgK2aZ+AvUQvzL4gmCLITl+1kUs1N9l15BzU2BErTO3Gk7 8poQ== Received: by 10.66.81.42 with SMTP id w10mr779379pax.66.1354259503003; Thu, 29 Nov 2012 23:11:43 -0800 (PST) Received: from ulysses ([155.69.16.180]) by mx.google.com with ESMTPS id sy1sm2574257pbc.66.2012.11.29.23.11.39 (version=SSLv3 cipher=OTHER); Thu, 29 Nov 2012 23:11:41 -0800 (PST) From: Chong Yidong To: Toru TSUNEYOSHI Subject: Re: bug#3234: fill-column+1 problem References: Date: Fri, 30 Nov 2012 15:11:36 +0800 In-Reply-To: (Toru TSUNEYOSHI's message of "Thu, 07 May 2009 20:00:08 +0900 (JST)") Message-ID: <87624nimzb.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2.90 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.1 (/) X-Debbugs-Envelope-To: 3234-done Cc: 3234-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -0.7 (/) Toru TSUNEYOSHI writes: > Hi. I met a problem about `fill-region-as-paragraph' on Emacs 22.3.1. > (This problem happens on Emacs 23.0.93.1, because there is no change > of the function's code.) > > Anyone can check the validity of the patch? > If invalid, I wish that someone solves the problem. Sorry for the very late response. Your patch looks good, and I've just committed it to trunk. Thanks. From debbugs-submit-bounces@debbugs.gnu.org Fri Dec 07 10:14:29 2012 Received: (at 3234-done) by debbugs.gnu.org; 7 Dec 2012 15:14:29 +0000 Received: from localhost ([127.0.0.1]:59031 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TgzdE-0003hs-Gq for submit@debbugs.gnu.org; Fri, 07 Dec 2012 10:14:29 -0500 Received: from blu0-omc4-s10.blu0.hotmail.com ([65.55.111.149]:38267) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TgzdC-0003hj-HJ for 3234-done@debbugs.gnu.org; Fri, 07 Dec 2012 10:14:27 -0500 Received: from BLU0-SMTP298 ([65.55.111.135]) by blu0-omc4-s10.blu0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675); Fri, 7 Dec 2012 07:14:06 -0800 X-Originating-IP: [180.17.89.12] X-EIP: [OaezTmcjYMq7RhL21hNvxcA+4juJ5vUG] X-Originating-Email: [t_tuneyosi@hotmail.com] Message-ID: Received: from localhost ([180.17.89.12]) by BLU0-SMTP298.blu0.hotmail.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Fri, 7 Dec 2012 07:14:05 -0800 Date: Sat, 8 Dec 2012 00:13:59 +0900 To: cyd@gnu.org Subject: Re: bug#3234: fill-column+1 problem From: Toru TSUNEYOSHI In-Reply-To: <87624nimzb.fsf@gnu.org> References: <87624nimzb.fsf@gnu.org> X-Mailer: Mew version 6.5 on Emacs 24.2 / Mule 6.0 (HANACHIRUSATO) MIME-Version: 1.0 Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 07 Dec 2012 15:14:05.0477 (UTC) FILETIME=[7F4BE550:01CDD48D] X-Spam-Score: 0.8 (/) X-Debbugs-Envelope-To: 3234-done Cc: 3234-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -0.0 (/) Ah, I'd forgotten all about that! Thank you, ありがとう (pronounce as "Arigatou")、 Chong Yidong さん (pronounce as "San"). From: Chong Yidong Subject: Re: bug#3234: fill-column+1 problem Date: Fri, 30 Nov 2012 15:11:36 +0800 Message-ID: <87624nimzb.fsf@gnu.org> > Toru TSUNEYOSHI writes: > >> Hi. I met a problem about `fill-region-as-paragraph' on Emacs 22.3.1. >> (This problem happens on Emacs 23.0.93.1, because there is no change >> of the function's code.) >> >> Anyone can check the validity of the patch? >> If invalid, I wish that someone solves the problem. > > Sorry for the very late response. Your patch looks good, and I've just > committed it to trunk. Thanks. From unknown Fri Jun 20 07:11:58 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 05 Jan 2013 12:24:03 +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