From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/82859 Path: news.gmane.org!not-for-mail From: Christopher Schmidt Newsgroups: gmane.emacs.gnus.general Subject: mml-insert-tag: insert closing tag Date: Tue, 29 Jan 2013 17:49:41 +0000 (GMT) Message-ID: <87r4l33mmj@ch.ristopher.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: ger.gmane.org 1359481861 2593 80.91.229.3 (29 Jan 2013 17:51:01 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 29 Jan 2013 17:51:01 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M31124@lists.math.uh.edu Tue Jan 29 18:51:21 2013 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1U0FL5-0002sj-Qc for ding-account@gmane.org; Tue, 29 Jan 2013 18:51:20 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1U0FJe-0004qh-Gk; Tue, 29 Jan 2013 11:49:50 -0600 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1U0FJc-0004qQ-10 for ding@lists.math.uh.edu; Tue, 29 Jan 2013 11:49:48 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1U0FJa-0000lJ-Tk for ding@lists.math.uh.edu; Tue, 29 Jan 2013 11:49:47 -0600 Original-Received: from ristopher.com ([146.185.21.93] helo=saturn.ch.ristopher.com) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1U0FJY-0001qZ-UT for ding@gnus.org; Tue, 29 Jan 2013 18:49:45 +0100 Original-Received: by saturn.ch.ristopher.com (Postfix, from userid 0) id 1FC4720421; Tue, 29 Jan 2013 17:49:42 +0000 (GMT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=ch.ristopher.com; s=mail; t=1359481782; bh=s6dUTC5HpX0o8EgxDGREnHWzxYw0eMhmR5tR90CE8RQ=; h=From:To:Subject:Message-ID:MIME-Version:Content-Type:Date; b=SnL9dCvp5FRkDnNAKCpNpr3IiBzjI8J4UH2Yt+bA7CsMZX/Q7hX2OmcM4EJSlDBDJ NLLJafEhNYnb61fnhkjSAKGJ5V+3O9WTFe52a8FKRCdlA/X8+7StVyqsbOy3B6wzuy FDkJBLFqEJfzmR34o2i9PR69UkNwUQ2Y1EbcQ9f4= Mail-Followup-To: ding@gnus.org X-Spam-Score: 0.2 (/) X-Spam-Report: SpamAssassin (3.3.1 2010-03-16) analysis follows Bayesian score: 0.5000 Ham tokens: 0.000-16--90h-0s--0d--sk:declare, 0.000-8--44h-0s--0d--20130129, 0.000-7--39h-0s--0d--2013-01-29, 0.001-3--13h-0s--0d--Insert, 0.002-2--10h-0s--0d--UD:el Spam tokens: 0.992-2595--122h-14350s--0d--H*r:quimby.gnus.org, 0.987-2380--192h-13589s--0d--H*Ad:D*gnus.org, 0.987-1--0h-1s--0d--HX-Envelope-From:sk:christo, 0.987-1--0h-1s--0d--H*RU:sk:christo, 0.987-1--0h-1s--0d--HX-Spam-Relays-External:sk:christo Autolearn status: ham -0.5 RP_MATCHES_RCVD Envelope sender domain matches handover relay domain 0.8 BAYES_50 BODY: Bayes spam probability is 40 to 60% [score: 0.5000] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:82859 Archived-At: --=-=-= Content-Type: text/plain 2013-01-29 Christopher Schmidt * mml.el (mml-insert-part): Insert closing tag. --=-=-= Content-Type: text/x-diff Content-Disposition: inline --- a/lisp/mml.el +++ b/lisp/mml.el @@ -1440,7 +1440,9 @@ TYPE is the MIME type to use." ;; when you send the message. (or (eq mail-user-agent 'message-user-agent) (setq mail-encode-mml t)) - (mml-insert-tag 'part 'type type 'disposition "inline")) + (mml-insert-tag 'part 'type type 'disposition "inline") + (save-excursion + (mml-insert-tag '/part))) (declare-function message-subscribed-p "message" ()) (declare-function message-make-mail-followup-to "message" --=-=-= Content-Type: text/plain Christopher --=-=-=--