From unknown Sat Aug 16 18:42:39 2025 X-Loop: owner@emacsbugs.donarmstrong.com Subject: bug#3234: fill-column+1 problem Reply-To: Toru TSUNEYOSHI , 3234@debbugs.gnu.org Resent-From: Toru TSUNEYOSHI Resent-To: bug-submit-list@lists.donarmstrong.com Resent-CC: Emacs Bugs Resent-Date: Thu, 07 May 2009 11:05:09 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-Emacs-PR-Message: report 3234 X-Emacs-PR-Package: emacs X-Emacs-PR-Keywords: Received: via spool by submit@emacsbugs.donarmstrong.com id=B.124169403312903 (code B ref -1); Thu, 07 May 2009 11:05:09 +0000 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 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 unknown Sat Aug 16 18:42:39 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.428 (Entity 5.428) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Toru TSUNEYOSHI Subject: bug#3234: closed (Re: bug#3234: fill-column+1 problem) Message-ID: References: <87624nimzb.fsf@gnu.org> X-Gnu-PR-Message: they-closed 3234 X-Gnu-PR-Package: emacs X-Gnu-PR-Keywords: patch Reply-To: 3234@debbugs.gnu.org Date: Fri, 30 Nov 2012 07:14:01 +0000 Content-Type: multipart/mixed; boundary="----------=_1354259641-10507-1" This is a multi-part message in MIME format... ------------=_1354259641-10507-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #3234: fill-column+1 problem 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 3234@debbugs.gnu.org. --=20 3234: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D3234 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1354259641-10507-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit 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. ------------=_1354259641-10507-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit 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. ------------=_1354259641-10507-1-- From unknown Sat Aug 16 18:42:39 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.428 (Entity 5.428) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Toru TSUNEYOSHI Subject: bug#3483: closed (Re: bug#3234: fill-column+1 problem) Message-ID: References: <87624nimzb.fsf@gnu.org> X-Gnu-PR-Message: they-closed 3483 X-Gnu-PR-Package: emacs X-Gnu-PR-Keywords: patch Reply-To: 3483@debbugs.gnu.org Date: Fri, 30 Nov 2012 07:14:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1354259642-10507-3" This is a multi-part message in MIME format... ------------=_1354259642-10507-3 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #3234: fill-column+1 problem 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 3483@debbugs.gnu.org. --=20 3234: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D3234 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1354259642-10507-3 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit 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. ------------=_1354259642-10507-3 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by emacsbugs.donarmstrong.com; 6 Jun 2009 20:23:08 +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.3 required=4.0 tests=AWL autolearn=ham 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.14.3/8.14.3/Debian-5) with ESMTP id n56KN1kC006148 for ; Sat, 6 Jun 2009 13:23:03 -0700 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MD2Pt-000362-DD for bug-gnu-emacs@gnu.org; Sat, 06 Jun 2009 16:23:01 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MD2Po-000323-My for bug-gnu-emacs@gnu.org; Sat, 06 Jun 2009 16:23:01 -0400 Received: from [199.232.76.173] (port=55100 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MD2Po-00031n-CR for bug-gnu-emacs@gnu.org; Sat, 06 Jun 2009 16:22:56 -0400 Received: from blu0-omc1-s32.blu0.hotmail.com ([65.55.116.43]:32697) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MD2Pn-0007wH-PA for bug-gnu-emacs@gnu.org; Sat, 06 Jun 2009 16:22:56 -0400 Received: from BLU0-SMTP91 ([65.55.116.7]) by blu0-omc1-s32.blu0.hotmail.com with Microsoft SMTPSVC(6.0.3790.3959); Sat, 6 Jun 2009 13:22:54 -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-SMTP91.blu0.hotmail.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.3959); Sat, 6 Jun 2009 13:22:54 -0700 Date: Sun, 07 Jun 2009 05:19:48 +0900 (JST) To: bug-gnu-emacs@gnu.org Subject: Re: fill-column+1 problem From: Toru TSUNEYOSHI In-Reply-To: <20090507.200008.181206471.t_tuneyosi@hotmail.com> References: <20090507.200008.181206471.t_tuneyosi@hotmail.com> X-Mailer: Mew version 6.2 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: 06 Jun 2009 20:22:54.0690 (UTC) FILETIME=[92D16C20:01C9E6E4] X-detected-operating-system: by monty-python.gnu.org: Windows 2000 SP4, XP SP1+ (I wrote the following...) I think the problem is a bug obviously. (And I wish the bug fix.) How do you (or maintainer) think about it? From: Toru TSUNEYOSHI Subject: fill-column+1 problem Date: Thu, 07 May 2009 20:00:08 +0900 (JST) Message-ID: <20090507.200008.181206471.t_tuneyosi@hotmail.com> > 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 > かきくけこ > > ======================================================================== (I should have written "fill-column+alpha problem" not "fill-column+1 problem". Because the problem is "fill-column+2 problem" if char-width (of char of end of line 1 after fill-region in example 2) is 3.) ------------=_1354259642-10507-3-- From unknown Sat Aug 16 18:42:39 2025 X-Loop: help-debbugs@gnu.org Subject: bug#3234: fill-column+1 problem Resent-From: Toru TSUNEYOSHI Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 07 Dec 2012 15:15:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 3234 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: cyd@gnu.org Cc: 3234-done@debbugs.gnu.org Received: via spool by 3234-done@debbugs.gnu.org id=D3234.135489326914256 (code D ref 3234); Fri, 07 Dec 2012 15:15:01 +0000 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 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-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.