From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/51245 Path: main.gmane.org!not-for-mail From: Mark Thomas Newsgroups: gmane.emacs.gnus.general Subject: Re: Error in current CVS, last-coding-system-used Date: Sun, 06 Apr 2003 09:28:39 -0400 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1049635734 12047 80.91.224.249 (6 Apr 2003 13:28:54 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 6 Apr 2003 13:28:54 +0000 (UTC) Original-X-From: owner-ding@hpc.uh.edu Sun Apr 06 15:28:53 2003 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 192ACa-000389-00 for ; Sun, 06 Apr 2003 15:28:52 +0200 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 192ACf-0000uo-00; Sun, 06 Apr 2003 08:28:57 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sun, 06 Apr 2003 08:30:02 -0500 (CDT) Original-Received: from sclp3.sclp.com (sclp3.sclp.com [64.157.176.121]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id IAA00321 for ; Sun, 6 Apr 2003 08:29:51 -0500 (CDT) Original-Received: (qmail 99712 invoked by alias); 6 Apr 2003 13:28:42 -0000 Original-Received: (qmail 99707 invoked from network); 6 Apr 2003 13:28:42 -0000 Original-Received: from pool-151-201-223-229.pitt.east.verizon.net (HELO svelte.home) (151.201.223.229) by gnus.org with SMTP; 6 Apr 2003 13:28:42 -0000 Original-Received: by svelte.home (Postfix, from userid 4642) id 967631B901; Sun, 6 Apr 2003 09:28:40 -0400 (EDT) Original-To: Gnus Mailing List Mail-Copies-To: never Mail-Followup-To: Gnus Mailing List In-Reply-To: (Jesper Harder's message of "Sun, 06 Apr 2003 14:51:15 +0200") User-Agent: Gnus/5.090018 (Oort Gnus v0.18) XEmacs/21.4 (Portable Code, linux) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:51245 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:51245 Jesper Harder writes: >> * mm-bodies.el (mm-decode-body): Set buffer-file-coding-system to >> last-coding-system-used. > > Fixed. No, it isn't. Your patch is missing a ': Index: lisp/mm-bodies.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/mm-bodies.el,v retrieving revision 6.19 diff -u -r6.19 mm-bodies.el --- lisp/mm-bodies.el 6 Apr 2003 12:17:24 -0000 6.19 +++ lisp/mm-bodies.el 6 Apr 2003 13:26:30 -0000 @@ -278,7 +278,7 @@ (mm-decode-coding-region-safely (point-min) (point-max) coding-system))) (setq buffer-file-coding-system - (if (boundp last-coding-system-used) + (if (boundp 'last-coding-system-used) last-coding-system-used coding-system))))))