From xemacs-m  Mon Dec  9 09:23:05 1996
Received: from chekov.ctd.comsat.com (exim@chekov.ctd.comsat.com [134.133.40.22]) by xemacs.cs.uiuc.edu (8.8.3/8.8.3) with SMTP id JAA19131 for <xemacs-beta@xemacs.org>; Mon, 9 Dec 1996 09:23:05 -0600 (CST)
Received: from neal by chekov.ctd.comsat.com with local (Exim 1.58 #2)
	id 0vX7Xt-0001QD-00; Mon, 9 Dec 1996 10:23:05 -0500
From: Neal Becker <neal@chekov.ctd.comsat.com>
To: xemacs-beta@xemacs.org
Subject: tm 20.0 non-mule?
Message-Id: <E0vX7Xt-0001QD-00@chekov.ctd.comsat.com>
Sender: <neal@ctd.comsat.com>
Date: Mon, 9 Dec 1996 10:23:05 -0500

I just built 20.0b30 on hpux9.05 WITHOUT mule.  tm is broken.

In emu.el we say:

(cond (running-mule-merged-emacs
       ;; for mule merged EMACS
       (require 'emu-e20)
       )
      (running-xemacs-with-mule
       ;; for XEmacs/mule
       (require 'emu-x20)
       )
      ((boundp 'MULE)
       ;; for MULE 1.* and 2.*
       (require 'emu-mule)
       )
      ((boundp 'NEMACS)
       ;; for NEmacs and NEpoch
       (require 'emu-nemacs)
       )
      (t
       ;; for EMACS 19 and XEmacs 19 (without mule)
       (require 'emu-e19)
       ))


But emu-e19 is missing!

