From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/37553 Path: main.gmane.org!not-for-mail From: Simon Josefsson Newsgroups: gmane.emacs.gnus.general Subject: Re: encrypted mails and quoted-printable Date: Mon, 06 Aug 2001 00:14:09 +0200 Message-ID: References: <2ny9oz4q77.fsf@piglet.jia.vnet> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035172947 14470 80.91.224.250 (21 Oct 2002 04:02:27 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 04:02:27 +0000 (UTC) Return-Path: Return-Path: Original-Received: (qmail 9880 invoked from network); 5 Aug 2001 22:12:55 -0000 Original-Received: from dolk.extundo.com (195.42.214.242) by gnus.org with SMTP; 5 Aug 2001 22:12:55 -0000 Original-Received: from barbar.josefsson.org (slipsten.extundo.com [195.42.214.241]) (authenticated) by dolk.extundo.com (8.11.3/8.11.3) with ESMTP id f75MD2w17143 for ; Mon, 6 Aug 2001 00:13:03 +0200 Original-To: ding@gnus.org In-Reply-To: (Andreas Jaeger's message of "Sun, 05 Aug 2001 18:30:26 +0200") Mail-Copies-To: nobody User-Agent: Gnus/5.090004 (Oort Gnus v0.04) Emacs/21.0.104 Original-Lines: 38 Xref: main.gmane.org gmane.emacs.gnus.general:37553 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:37553 Andreas Jaeger writes: >>=20 ... > But this means that I still can use ASCII for 7bits and do not need to > use QP for 7-bit only data. > > Have a look at this email - it's signed, contains AFAIK no 8-bit data > and is still QP. That's the problem I see. Ah, yes. The quote prefix adds trailing SPC on empty lines, which is not nice. Attached patch should clean things up. > =2D-=20 The signature delimiter has trailing whitespace, so it needs QP. But this patch should remove all other uses of QP in your article. --- message.el.~6.109.~ Mon Aug 6 00:05:29 2001 +++ message.el Mon Aug 6 00:12:58 2001 @@ -540,7 +540,7 @@ :group 'message-insertion) (defcustom message-yank-cited-prefix ">" - "*Prefix inserted on cited lines of yanked messages. + "*Prefix inserted on cited and empty lines of yanked messages. Fix `message-cite-prefix-regexp' if it is set to an abnormal value. See also `message-yank-prefix'." :type 'string @@ -2109,7 +2109,7 @@ (while (< (point) (mark t)) (cond ((eolp) - (insert message-yank-prefix) + (insert message-yank-cited-prefix) (setq last-line nil)) ((looking-at ">") (if (memq last-line '(nil spaces right-angle quoted))