From xemacs-m  Fri May  9 11:21:03 1997
Received: from crystal.WonderWorks.COM (crystal.WonderWorks.com [192.203.206.1])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id LAA25462
	for <xemacs-beta@xemacs.org>; Fri, 9 May 1997 11:21:01 -0500 (CDT)
Received: by crystal.WonderWorks.COM 
	id QQcour07563; Fri, 9 May 1997 12:21:01 -0400 (EDT)
Date: Fri, 9 May 1997 12:21:01 -0400 (EDT)
Message-Id: <QQcour07563.199705091621@crystal.WonderWorks.COM>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
From: Kyle Jones <kyle_jones@wonderworks.com>
To: xemacs-beta@xemacs.org
Subject: False `read-event' -- Aargh!
In-Reply-To: <kigvi4su4ed.fsf@jagor.srce.hr>
References: <kigvi4su4ed.fsf@jagor.srce.hr>
X-Mailer: VM 6.31 under 20.2 XEmacs Lucid (beta4)
X-Face: /cA45WHG7jWq>(O3&Z57Y<"WsX5ddc,4c#w0F*zrV#=M
        0@~@,s;b,aMtR5Sqs"+nU.z^CSFQ9t`z2>W,S,]:[+2^
        Nbf6v4g>!&,7R4Ot4Wg{&tm=WX7P["9%a)_da48-^tGy
        ,qz]Z,Zz\{E.,]'EO+F)@$KtF&V

Hrvoje Niksic writes:
 > 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))))

I agree 100% with the sentiment.  NOTE: the defalias call has the
args reversed.

