From xemacs-m  Fri May  9 09:05:57 1997
Received: from jagor.srce.hr (hniksic@jagor.srce.hr [161.53.2.130])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id JAA12068
	for <xemacs-beta@xemacs.org>; Fri, 9 May 1997 09:05:55 -0500 (CDT)
Received: (from hniksic@localhost)
          by jagor.srce.hr (8.8.5/8.8.4)
	  id QAA17243; Fri, 9 May 1997 16:05:48 +0200 (MET DST)
To: xemacs-beta@xemacs.org
Subject: False `read-event' -- Aargh!
X-Save-Project-Gutenberg: <URL:http://www.promo.net/pg/nl/pgny_nov96.html>
X-Attribution: Hrv
X-Face: Mie8:rOV<\c/~z{s.X4A{!?vY7{drJ([U]0O=W/<W*SMo/Mv:58:*_y~ki>xDi&N7XG
        KV^$k0m3Oe/)'e%3=$PCR&3ITUXH,cK>]bci&<qQ>Ff%x_>1`T(+M2Gg/fgndU%k*ft
        [(7._6e0n-V%|%'[c|q:;}td$#INd+;?!-V=c8Pqf}3J
From: Hrvoje Niksic <hniksic@srce.hr>
Date: 09 May 1997 16:05:46 +0200
Message-ID: <kigvi4su4ed.fsf@jagor.srce.hr>
Lines: 29
X-Mailer: Gnus v5.4.51/XEmacs 19.15

iso-acc.el:

;; needed for compatibility with XEmacs 19.14
(if (fboundp 'read-event) ()
  (defun read-event () (event-key (next-command-event))))

This is horrible!  After loading `iso-acc', widet breaks because it
tried (validly!) to use `read-event', and fails, because the
simulation is horrible.

Is the person who runs iso-acc.el on this list?  If yes, a request:
please use the prefixed versions of functions, like this:

(if (fboundp 'read-event)
    (defalias 'read-event 'iso-read-event)
  (defun iso-read-event ()
    (event-key (next-command-event))))

Believe me, everyone will be *much* happier.

OTOH, if you wish to add a new Emacs-compatible function, which would
improve XEmacs, go ahead and post it here.  We may wish to test it,
and include it to a package-independent file.

-- 
Hrvoje Niksic <hniksic@srce.hr> | Student at FER Zagreb, Croatia
--------------------------------+--------------------------------
* Q: What is an experienced Emacs user?
* A: A person who wishes that the terminal had pedals.

