Gnus development mailing list
 help / color / mirror / Atom feed
From: Florian Weimer <fw@deneb.cygnus.argh.org>
Subject: Re: XEmacs 21.1.9 breaks Gnus v5.8 (get-charset-property)
Date: 15 Feb 2000 08:28:28 +0100	[thread overview]
Message-ID: <87n1p2diw3.fsf@deneb.cygnus.argh.org> (raw)
In-Reply-To: Jason R Mastaler's message of "14 Feb 2000 14:00:02 -0700"

Jason R Mastaler <jason@mastaler.com> writes:

> When trying to send mail from XEmacs 21.1.9 and Gnus v5.8.x (latest
> CVS), I get the following error and backtrace:
>    
> 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)))



  reply	other threads:[~2000-02-15  7:28 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2000-02-14 21:00 Jason R Mastaler
2000-02-15  7:28 ` Florian Weimer [this message]
2000-02-17  8:31   ` Jason R Mastaler

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87n1p2diw3.fsf@deneb.cygnus.argh.org \
    --to=fw@deneb.cygnus.argh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).