From xemacs-m  Fri Jan 31 06:41:22 1997
Received: from venus.Sun.COM (venus.Sun.COM [192.9.25.5])
	by xemacs.org (8.8.5/8.8.5) with SMTP id GAA03679
	for <xemacs-beta@xemacs.org>; Fri, 31 Jan 1997 06:41:21 -0600 (CST)
Received: from Eng.Sun.COM ([129.146.1.25]) by venus.Sun.COM (SMI-8.6/mail.byaddr) with SMTP id EAA07813; Fri, 31 Jan 1997 04:40:52 -0800
Received: from kindra.eng.sun.com by Eng.Sun.COM (SMI-8.6/SMI-5.3)
	id EAA14133; Fri, 31 Jan 1997 04:40:51 -0800
Received: from xemacs.eng.sun.com by kindra.eng.sun.com (SMI-8.6/SMI-SVR4)
	id EAA17287; Fri, 31 Jan 1997 04:40:49 -0800
Received: by xemacs.eng.sun.com (SMI-8.6/SMI-SVR4)
	id EAA13025; Fri, 31 Jan 1997 04:40:48 -0800
Date: Fri, 31 Jan 1997 04:40:48 -0800
Message-Id: <199701311240.EAA13025@xemacs.eng.sun.com>
From: Martin Buchholz <mrb@Eng.Sun.COM>
To: Tore Olsen <toreo@colargol.idb.hist.no>
Cc: xemacs-beta@xemacs.org
Subject: 20.0-b93 bug: tm, mule and menubar
In-Reply-To: <yngg1zirtog.fsf@colargol.idb.hist.no>
References: <yngg1zirtog.fsf@colargol.idb.hist.no>
Reply-To: Martin Buchholz <mrb@Eng.Sun.COM>
Mime-Version: 1.0 (generated by tm-edit 7.100)
Content-Type: text/plain; charset=US-ASCII

>>>>> "Tore" == Tore Olsen <toreo@colargol.idb.hist.no> writes:

Tore> I compiled 20b93 without mule first, and discovered a bug: Trying to
Tore> change the font or the font size via the menubar gives "No menu", and
Tore> this error (with debug-on-error set):

My guess is you're picking up a definition of charset-registry in
emu-e19.el.

Try this patch:

*** /tmp/geta376	Fri Jan 31 04:39:01 1997
--- x-font-menu.el	Fri Jan 31 04:39:56 1997
***************
*** 217,223 ****
  	  (not (eq (device-type device) 'x)))
        nil
      (unless x-font-regexp-ascii
!       (setq x-font-regexp-ascii (if (fboundp 'charset-registry)
  				    (charset-registry 'ascii)
  				  "iso8859-1")))
      (setq font-menu-registry-encoding
--- 217,223 ----
  	  (not (eq (device-type device) 'x)))
        nil
      (unless x-font-regexp-ascii
!       (setq x-font-regexp-ascii (if (featurep 'mule)
  				    (charset-registry 'ascii)
  				  "iso8859-1")))
      (setq font-menu-registry-encoding

