From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Kazuhiro Ito Newsgroups: gmane.emacs.bugs Subject: bug#17190: 24.4.50; fill-flow checks quoted lines after deleting leading space Date: Thu, 15 Aug 2019 18:59:55 +0900 Message-ID: <86ef1mbvfo.wl--xmue@d1.dion.ne.jp> References: <87txa8b66v.wl%%xmue@d1.dion.ne.jp> <87lfvvs2iv.fsf@mouse.gnus.org> Mime-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="24370"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (=?UTF-8?Q?Goj=C5=8D?=) APEL/10.8 EasyPG/1.0.0 Emacs/27.0 (x86_64-w64-mingw32) MULE/6.0 (HANACHIRUSATO) Cc: 17190@debbugs.gnu.org To: Lars Ingebrigtsen Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Thu Aug 15 12:01:27 2019 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hyCZQ-00067L-2K for geb-bug-gnu-emacs@m.gmane.org; Thu, 15 Aug 2019 12:01:24 +0200 Original-Received: from localhost ([::1]:40132 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1hyCZO-0000ny-Ll for geb-bug-gnu-emacs@m.gmane.org; Thu, 15 Aug 2019 06:01:22 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:49183) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1hyCZC-0000nS-MU for bug-gnu-emacs@gnu.org; Thu, 15 Aug 2019 06:01:16 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hyCZ7-0003ta-66 for bug-gnu-emacs@gnu.org; Thu, 15 Aug 2019 06:01:10 -0400 Original-Received: from debbugs.gnu.org ([209.51.188.43]:41850) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hyCZ3-0003sU-Q0 for bug-gnu-emacs@gnu.org; Thu, 15 Aug 2019 06:01:04 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hyCZ3-0007PJ-Mr for bug-gnu-emacs@gnu.org; Thu, 15 Aug 2019 06:01:01 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Kazuhiro Ito Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 15 Aug 2019 10:01:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 17190 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: notabug Original-Received: via spool by 17190-submit@debbugs.gnu.org id=B17190.156586320428331 (code B ref 17190); Thu, 15 Aug 2019 10:01:01 +0000 Original-Received: (at 17190) by debbugs.gnu.org; 15 Aug 2019 10:00:04 +0000 Original-Received: from localhost ([127.0.0.1]:50668 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hyCY7-0007Ms-Ux for submit@debbugs.gnu.org; Thu, 15 Aug 2019 06:00:04 -0400 Original-Received: from snd00002.auone-net.jp ([111.86.247.2]:32256 helo=dmta0009.auone-net.jp) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hyCY4-0007Lu-8h for 17190@debbugs.gnu.org; Thu, 15 Aug 2019 06:00:02 -0400 Original-Received: from kzhr.d1.dion.ne.jp by dmta0009.auone-net.jp with ESMTP id <20190815095957222.VBKK.13379.kzhr.d1.dion.ne.jp@dmta0009.auone-net.jp>; Thu, 15 Aug 2019 18:59:57 +0900 In-Reply-To: <87lfvvs2iv.fsf@mouse.gnus.org> X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.51.188.43 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.org@gnu.org Original-Sender: "bug-gnu-emacs" Xref: news.gmane.org gmane.emacs.bugs:165078 Archived-At: > > When I evaluate the below code, I receive unexpected result. > > > > (with-temp-buffer > > (require 'flow-fill) > > (insert " > ABC \nDEF\n") > > (fill-flowed) > > ;; (mime-display-text/plain-flowed) > > (buffer-string)) > > > > -> > > "> ABC > > DEF > > " > > But I expect the below result. > > > > "> ABC DEF > > " > > If I'm reading > > https://tools.ietf.org/html/rfc2646 > > right, that's not how this is supposed to work, and `fill-flowed' does > it correctly -- it's supposed to flow together lines that have the same > quotation level, like this: Please beware Space-Stuffing at the first line. The first line is not quoted one. " > ABC " and "DEF" have the same quotation level. -- Kazuhiro Ito