From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/29258 Path: main.gmane.org!not-for-mail From: Jason R Mastaler Newsgroups: gmane.emacs.gnus.general Subject: Re: XEmacs 21.1.9 breaks Gnus v5.8 (get-charset-property) Date: 17 Feb 2000 01:31:03 -0700 Sender: owner-ding@hpc.uh.edu Message-ID: References: <87n1p2diw3.fsf@deneb.cygnus.argh.org> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035165959 1686 80.91.224.250 (21 Oct 2002 02:05:59 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 02:05:59 +0000 (UTC) Return-Path: Original-Received: from lisa.math.uh.edu (lisa.math.uh.edu [129.7.128.49]) by mailhost.sclp.com (Postfix) with ESMTP id 0C995D051E for ; Thu, 17 Feb 2000 03:31:46 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by lisa.math.uh.edu (8.9.1/8.9.1) with ESMTP id CAB01975; Thu, 17 Feb 2000 02:31:41 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 17 Feb 2000 02:31:02 -0600 (CST) Original-Received: from mailhost.sclp.com (postfix@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id CAA22493 for ; Thu, 17 Feb 2000 02:30:52 -0600 (CST) Original-Received: from fb02.eng00.mindspring.net (fb02.eng00.mindspring.net [207.69.229.20]) by mailhost.sclp.com (Postfix) with ESMTP id C8890D051E for ; Thu, 17 Feb 2000 03:30:56 -0500 (EST) Original-Received: from bodhi.in.mastaler.com (pool-209-138-182-101-phnx.grid.net [209.138.182.101]) by fb02.eng00.mindspring.net (8.9.3/8.8.5) with SMTP id DAA08805 for ; Thu, 17 Feb 2000 03:30:54 -0500 (EST) Original-Received: (qmail 7587 invoked by uid 500); 17 Feb 2000 08:31:04 -0000 X-Now-Reading: M.H. Abrams' _The Milk of Paradise_ Original-To: ding@gnus.org X-Face: #PFJ%E?"C]hg]n/b(X~UrRpjsGT[!dwR>L]h\8|Da#kz,&TBB`@{JN'iLB+X5K6F#+cio5k 9MWHi#f=+FO5(1l0EGJcylJm40p,/7p6fpK#2l3egDrl^v]:Es&xg!g|G:)6W\2}|@UgN=k*sCt_KH +DKCDZ5R|4%P&jN|WnreN`8"KC;y,&drj writes: > > Signaling: (void-function get-charset-property) > > get-charset-property(ascii prefered-coding-system) > > Could you try the following definition of `mm-mime-charset'? > > (defun mm-mime-charset (charset) > "Return the MIME charset corresponding to the MULE CHARSET." > (if (and (fboundp 'coding-system-get) (fboundp 'get-charset-property)) > ;; This exists in Emacs 20. > (or > (and (mm-preferred-coding-system charset) > (coding-system-get > (mm-preferred-coding-system charset) 'mime-charset)) > (and (eq charset 'ascii) > 'us-ascii) > (mm-preferred-coding-system charset) > (mm-mule-charset-to-mime-charset charset)) > ;; This is for XEmacs. > (mm-mule-charset-to-mime-charset charset))) This fixes the problem.