From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp1 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id cIYmAT+GA1+UQAAA0tVLHw (envelope-from ) for ; Mon, 06 Jul 2020 20:14:55 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp1 with LMTPS id mNF2OD6GA1/RPgAAbx9fmQ (envelope-from ) for ; Mon, 06 Jul 2020 20:14:54 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 0A609940712 for ; Mon, 6 Jul 2020 20:14:53 +0000 (UTC) Received: from localhost ([::1]:39984 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jsXVr-0001TF-FG for larch@yhetil.org; Mon, 06 Jul 2020 16:14:51 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:47184) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jsXVU-0001Rp-1p for emacs-orgmode@gnu.org; Mon, 06 Jul 2020 16:14:28 -0400 Received: from static.214.254.202.116.clients.your-server.de ([116.202.254.214]:50006 helo=ciao.gmane.io) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jsXVR-00068m-T2 for emacs-orgmode@gnu.org; Mon, 06 Jul 2020 16:14:27 -0400 Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1jsXVO-0008Mj-0H for emacs-orgmode@gnu.org; Mon, 06 Jul 2020 22:14:22 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: emacs-orgmode@gnu.org From: Richard Kim Subject: Re: [BUG] org-fill-paragraph [M-q] not apply on last paragraph Date: Mon, 06 Jul 2020 13:14:12 -0700 Message-ID: <87imf01jvv.fsf@gmail.com> References: <87r1tpov50.fsf@gmail.com> <87zh8d2bvm.fsf@nicolasgoaziou.fr> <87o8osq3b3.fsf@gmail.com> <20200706115348.GB3537@tuxteam.de> <87lfjwq2hv.fsf@gmail.com> <20200706153316.GC3537@tuxteam.de> Mime-Version: 1.0 Content-Type: text/plain User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.91 (gnu/linux) Cancel-Lock: sha1:8UO/eF4ATfSbM2d01yLycF5x6wo= Received-SPF: pass client-ip=116.202.254.214; envelope-from=geo-emacs-orgmode@m.gmane-mx.org; helo=ciao.gmane.io X-detected-operating-system: by eggs.gnu.org: First seen = 2020/07/06 14:33:36 X-ACL-Warn: Detected OS = Linux 2.2.x-3.x [generic] [fuzzy] X-Spam_score_int: 23 X-Spam_score: 2.3 X-Spam_bar: ++ X-Spam_report: (2.3 / 5.0 requ) BAYES_00=-1.9, DKIM_ADSP_CUSTOM_MED=0.001, FORGED_GMAIL_RCVD=1, FREEMAIL_FORGED_FROMDOMAIN=1, FREEMAIL_FROM=0.001, FREEMAIL_REPLYTO_END_DIGIT=0.25, HEADER_FROM_DIFFERENT_DOMAINS=1, NML_ADSP_CUSTOM_MED=0.9, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=_AUTOLEARN X-Spam_action: no action X-BeenThere: emacs-orgmode@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: emacs18@gmail.com Errors-To: emacs-orgmode-bounces+larch=yhetil.org@gnu.org Sender: "Emacs-orgmode" X-Scanner: scn0 Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=fail reason="SPF not aligned (relaxed), No valid DKIM" header.from=gmail.com (policy=none); spf=pass (aspmx1.migadu.com: domain of emacs-orgmode-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=emacs-orgmode-bounces@gnu.org X-Spam-Score: -0.41 X-TUID: vtm5UN26Xq7z I see the problem as well using very latest org source code, i.e., this change * 2020-07-06 12:05:18 +0200 07a4a7286 Nicolas Goaziou list: Fix regression when inserting items I created two long lines separated by a blank line. Each long line was created by typing "0 1 2 3 4 5 6 7 8 9 " then repeating it 7 more times. There are multiple problems. 1. Select both long lines and the blank line in between. M-q fills the first line but not the second one. 2. Select only the second line. M-q fills the first line, i.e., the line that was not selected! It does not fill the second line. 3. The problem occurs whether the long lines are delimited between #+begin_src ... #+end_src or not. 4. Select only the first line. M-q does nothing! 5. Select first line plus the following blank line. M-q fills first line. 6. The problem occurs for normal emacs mode as well vim mode within spacemacs.